当次提交
当次的提交显示指定提交者信息:
1 git commit -m "Initial commit" --author="mn <[email protected]>"
修改上次提交
修改已经提交的commit的信息:
1 git commit --amend --author="mn <[email protected]>"
修改历史提交
如果是上几次的提交呢?可以利用rebase来实现,如:
1 git rebase -i orgin/master
在列表中将开头的pick修改为edit,然后重复执行以下命令直到完成:
1 git commit --amend --author="mn <[email protected]>" 2 git rebase --continue
修改所有的提交
与上面的不同在于,不能再使用特定的commit id,使用
1 git rebase -i --root
即可。
原文地址:https://www.cnblogs.com/yanglang/p/11794861.html
时间: 2024-11-05 22:52:07