git 常用命令备忘
仅作为日常使用备忘,并非常用命名整理
删除源端分支
git push orgin --delete branch_aa分支某次提交应用到b分支
切换到branch_b 分支: git checkout branch_b
提交:git cheery-pick xxxxx(提交SHA-1)合并多次提交为一次提交
git rebase -i HEAD~4 (合并最近4次提交)
然后编辑提交内容,p选择,s合并到更新的提交
……未完待续
仅作为日常使用备忘,并非常用命名整理
删除源端分支
git push orgin --delete branch_a
a分支某次提交应用到b分支
切换到branch_b 分支: git checkout branch_b
提交:git cheery-pick xxxxx(提交SHA-1)
合并多次提交为一次提交
git rebase -i HEAD~4 (合并最近4次提交)
然后编辑提交内容,p选择,s合并到更新的提交
……未完待续