I successfully converted out svn to git. The problem is that we entered wrong emails for the commit authors. Is it possible to change the email address in git commit’s author?
10x
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
git filter-branchis what you’re looking for. It’s not for the faint of heart, though, and will potentially change all commits of your repository which is a bad thing if you already published the repository.This should rewrite the history of all available refs (hence,
--all), replacing all commit authors’ email addresses that match “old@email” with “new@email.”