【发布时间】:2014-03-01 14:33:39
【问题描述】:
我推送了我的最新更改
git push origin master
然后我用交互式变基修改了提交消息,即
git rebase -i HEAD~5
并在最后一次提交中更改了消息。
这保存成功,但是当我执行git push origin master 时,它只显示Everything up-to-date。
现在 git 历史记录并没有显示实际所做的措辞更改?
但是,当我执行 git commit --amend -m"msg" 然后尝试推送更改时“看到”了。
【问题讨论】:
标签: git github rebase git-push git-interactive-rebase