更新本地代码流程
- 先从自己的分支切换到master_team分支: git checkout master_team
- 更新master_team分支:git pull
- 再切回自己的分支: git checkout yinyongjie_dev
- 把master分支合并到自己分支: git merge master_team
补充
- 去除本地不需要的修改 git checkout — 文件名
例如: git checkout — pom.xml [去除pom.xml文件的修改] - 每操作一步用git status看一下当前状态和提示下一步该怎么操作
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/191700.html