因為 commit 時的作者身份錯亂,所以要改掉。在 StackOverflow 查到這篇:How to change the commit author for one specific commit?
- 先 git rebase -i ,然後把 pick 全改成 edit
- 接著,git 會切到第一個 commit 結束的時間點
- 輸入 git commit –amend —author=”Author Name <email@address.com>” –no-edit ,這樣就會把這次 commit 的 author 修改為 Author Name
。對,別忘了,這邊要改成你自己的名字跟 e-mail 。 - 再輸入 git rebase –continue 切到下個 commit
- 就這樣依序作業直到結束。
沒有留言:
張貼留言