类似于修改author有
git commit --amend --author="name <email>"
committer改如何修改呢
Thanks
git commit --amend --reset-author
http://stackoverflow.com/ques...
GIT_COMMITTER_NAME=xxx GIT_COMMITTER_EMAIL=yyy git commit --amend
It seems that it can only be specified through environment variables (or configuration files), not through command line options.
Why do you want to change the committer? Want to deceive someone?
git commit --amend --reset-author
http://stackoverflow.com/ques...
It seems that it can only be specified through environment variables (or configuration files), not through command line options.
Why do you want to change the committer? Want to deceive someone?