Git Change User Of All Commits

[Solved] Git Change User Of All Commits | Typescript - Code Explorer | yomemimo.com
Question : git change user of all commits

Answered by : fahim-foysal-rabby

# for all commits
git rebase -i --root --exec 'git commit --amend --reset-author --no-edit'
# change after a specefic point
git rebase -i -r <some-commit-reference> --exec 'git commit --amend --reset-author --no-edit'

Source : | Last Update : Fri, 11 Nov 22

Answers related to git change user of all commits

Code Explorer Popular Question For Typescript