Git Management
Mini Program IDE supports use of visualized Git management tool to manage the project codes.
1. Initialize Git
When the project directory has no Git warehouse, you can directly initialize Git (git init
).
2. Stage Change
You can choose to stage all changes by using one-key (git add .
), or hover over individual file and choose to stage.
3. Submit Change
Submit the staged change locally (git commit -m 'xxx'
)
Confirm the code diff and then do the submission operation.
4. Push to Remote Warehouse
Add to the warehouse (git remote add origin xxxxxx
)
Confirm and push (git push origin
)