1. 进入上次提交的记录
git commit --amend
2. 找到上次提交的备注,按 i 进入编辑模式,修改为想要的备注,按 ESC退出编辑模式,按 :wq! 保存并退出。
git push origin [branchName]
遇到问题:
1. 命令:
git push origin [branchName]
报错:
2. 命令:
git pull origin [branchName]
报错:
3. 命令:
git config pull.rebase true
4. 命令:
git add [changedFile]
git commit -m [message]
5. 命令:
git pull origin befl
报错:
6. 命令:
git cherry-pick 8371f36
提示:
7. 命令:
git cherry-pick --continue
8. 命令:
git push origin [branchName]
Reference:
https://blog.csdn.net/weixin_43544093/article/details/122957123
网友评论