标签:push merge list git class comm 合并 branch plain
echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/jiujue/branchName.git
git push -u origin master
git log --graph
暂存工作状态git stash
创建并切换到debug分支git checkout -b bug01
debug ...
git checkout master
合并debug后的分支git merge bug01
查看暂存的工作状态
回到原工作状态 : git pop
标签:push merge list git class comm 合并 branch plain
原文地址:https://www.cnblogs.com/jiujue/p/12243684.html