Git rebase change author?

This question already has an answer here:

  • Change the author and committer name and e-mail of multiple commits in Git 29 answers

  • You can use interactive rebase. The answer from this post gives you an example: Change commit author at one specific commit.

    The author asks for changing author at a specific commit, but interactive rebasing can be used to change authors of multiple commits if you edit all commits that you wish to change.

    Other potential useful techniques related to interactive rebasing could be found in the Pro Git book http://git-scm.com/book/en/Git-Tools-Rewriting-History, including squashing, redordering, editing messages, etc.

    链接地址: http://www.djcxy.com/p/28484.html

    上一篇: 我如何重写git仓库中的提交者名称?

    下一篇: Git rebase更改作者?