docs(git): update git.sh

This commit is contained in:
rmlzy 2020-04-07 09:18:35 +08:00
parent 330e60d307
commit e8af65049d
1 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,9 @@ git branch my-branch # creates my-branch
git branch -d my-branch # deletes my-branch
git checkout my-bracnch # switches to my-branch
git merge my-branch # merges my-branch to current branch
git push origin :my-branch # delete remote branch
git cherry-pick <commit_id> # merge the specified commit
git remote # shows the remotes
git remote -v # shows the remote for pull and push