git总结

git提交

  1. 新建feature分支 git checkout -b feature_x checkout 切换 -b feature_x branch feature_x 新建分支x
  2. 查看分支 git branch
  3. 删除本地分支 git branch -d feature_x
  4. 删除远程分支 git push origin –delete feature_x
  5. git rebase master -> git rebase –contionue
  6. 纳入版本控制 git add xxx.xx
  7. git pull 拉代码
  8. git push 推代码

git rebase –abort