TIL

git rebase の -x は、rebase中の各コミットの後に指定したコマンドを自動実行するオプション

Git
git rebase -x 'git commit --amend --author="cake <cake@gmail.com>" --no-edit --no-verify'

とすれば rebase した後に committer を変えることができる。

← Back