抓取远程master分支到本地,并与UI分支合并

1.pull
(1)UI:  git add .
 git commit -m
 
 git checkout master
(2)master:
 git pull origin master
 
 git checkout UI
(3)UI:  git merge master (处理冲突)
 git add .
 git commit -m
 
2.push
 git add.
 git commit -m
 git push

posted @ 2018-06-30 09:56  _最冷一天  阅读(342)  评论(0编辑  收藏  举报