Git Management

Mini Program IDE supports use of visualized Git management tool to manage the project codes.

Git Management

1. Initialize Git

When the project directory has no Git warehouse, you can directly initialize Git (git init).

Git Management

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.

Git Management

3. Submit Change

Submit the staged change locally (git commit -m 'xxx')

Git Management

Confirm the code diff and then do the submission operation.

Git Management

4. Push to Remote Warehouse

Add to the warehouse (git remote add origin xxxxxx)

Git Management

Confirm and push (git push origin)

Git Management