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