search

Home  >  Q&A  >  body text

git提交之后如何修改committer?

类似于修改author有

git commit --amend --author="name <email>"

committer改如何修改呢

Thanks

我想大声告诉你我想大声告诉你2763 days ago874

reply all(3)I'll reply

  • 为情所困

    为情所困2017-05-02 09:49:14

    git commit --amend --reset-author

    reply
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-02 09:49:14

    http://stackoverflow.com/ques...

    reply
    0
  • ringa_lee

    ringa_lee2017-05-02 09:49:14

    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?

    reply
    0
  • Cancelreply