摘要:
核心: (master) git merge feature --squash 意思是把feature分支不同于master分支的所有文件罗列出来(无论有几个提交),然后就可以方便的git commit提交了 #1 创建功能分支 (master) git checkout -b feature #2 阅读全文
摘要:
remote master上的内容merge 到自己的开发分支上 (上班第一件事) 1. 切换到master分支 git checkout master 2. 将remote master同步到local master git pull origin master 3. 切换到的local开发分支 阅读全文