摘要:
1.查看分支 git branch 2.checkout出代码到分支test git checkout -b test 3.添加到缓存 git add . 4.添加到本地库 git commit -m 'test commit !' 5.提交远程git git push origin test 大功 阅读全文
摘要:
需求:将develop合并到master分支 1.查看当前分支(当前分支可以直接查看或者命令查看) git branch或者命令git status *代表当前分支 2.切换分支到master git checkout mater 3.将代码更新到最新版本 git pull 4.在master分支上 阅读全文