After I easily switched from Mercurial to Git, I needed to update the committer’s name and email adress. I found that using git filter-branch could help me.
Here is what I did :
git filter-branch --env-filter \ 'export GIT_AUTHOR_NAME="Foo" ; GIT_AUTHOR_EMAIL="foo.bar@example.com"'
And git updated the author’s name and author’s email for every commit.
‘Hope that helps













Trackbacks /
Pingbacks