- 新建feature分支 git checkout -b feature_x checkout 切换 -b feature_x branch feature_x 新建分支x
- 查看分支 git branch
- 删除本地分支 git branch -d feature_x
- 删除远程分支 git push origin –delete feature_x
- git rebase master -> git rebase –contionue
- 纳入版本控制 git add xxx.xx
- git pull 拉代码
- git push 推代码
- git cherry-pick
将指定的提交(commit)应用于其他分支。