4 回答
TA贡献1963条经验 获得超6个赞
修改最近的提交消息
git commit --amend
git commit --amend -m "New commit message"
更改已推送到远程分支的提交消息
git push <remote> <branch> --force# Orgit push <remote> <branch> -f
警告:强制推送将用本地分支的状态覆盖远程分支。
警告:在修改你已经和其他人分享过的承诺时要小心。
使用交互式重基
// X is the number of commits to the last commit you want to be able to edit git rebase -i HEAD~X
e/r
关于交互式重基的重要注记
git rebase -i HEAD~X
X
X
好消息:
git rerere
文献资料
TA贡献1876条经验 获得超7个赞
git commit --amend
git commit --amend -C HEAD
git reset --hard HEAD^
git rebase -i HEAD~commit_count
git commit --amend git rebase --continue
git commit --amend
- 4 回答
- 0 关注
- 875 浏览
添加回答
举报