如何修改 git commit 信息 #113
Genluo
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
修改最后一次的提交
git commit --amend -m "" git push --force
修改之前的
commit
信息选择最新提交往前2个提交
使用提示的文案修改描述信息
然后使用这个命令修改描述信息
git commit --amend -m 'feat: test'
这个修改完成之后,然后使用下面这个命令切换到下一个
如果分支已经push 到远程
建议重新提交新的 commit (不能确定别人是否已经同步到远程),并在 commit说明详细情况
Beta Was this translation helpful? Give feedback.
All reactions