2
votes
2answers
333 views

“git filter-branch” successfully used to change committer/author, but changes don't reflect on github

I recently replaced the author, committer and emails thereof in all of my local commits, using the following command: git filter-branch -f --env-filter ' if [ "$GIT_COMMITTER_NAME" = "oldname" ]; ...