删除本地分支
git branch -D xxx
把dev分支合并到当前分支
git merge dev(origin)
合并是出现
Please enter a commit message to explain why this merge is necessary.
1.按键盘字母 i 进入insert模式
2.修改最上面那行黄色合并信息,可以不修改
3.按键盘左上角"Esc"
4.输入":wq",注意是冒号+wq,按回车键即可
切换到tag
git checkout tag_name
本地删除tag
git tag -d test_tag
增量合并
git cherry-pick xxx
网友评论