Skip to content

Instantly share code, notes, and snippets.

@carlosmcevilly
Created March 27, 2012 22:55
Show Gist options
  • Star 94 You must be signed in to star a gist
  • Fork 24 You must be signed in to fork a gist
  • Save carlosmcevilly/2221249 to your computer and use it in GitHub Desktop.
Save carlosmcevilly/2221249 to your computer and use it in GitHub Desktop.
fix git commit with wrong email address in git config, before pushing
If:
- you add and commit with the wrong email address in git, and
- your remote has a hook set up to prevent you from pushing with the bad address
Then you need to amend the author of your commit before push can succeed:
1. fix your email address in git config:
$ git config user.name "Your Name"
$ git config user.email "your@address.com"
$ git submodule foreach --recursive 'git config user.name "Your Name" && git config user.email "your@address.com"'
2. then do a rebase:
$ git rebase -i HEAD~1
# git brings up your editor.
3. in the editor, mark the commit as 'edit' then save and exit the editor
4. do an amend that resets the author now that your address is changed:
$ git commit --amend --reset-author
5. finish with a rebase:
$ git rebase --continue
# git says:
# Successfully rebased and updated refs/heads/master.
@rowlandekemezie
Copy link

What if after pushing successfully, you found out it was wrong email, how do I lik it back? Would the above description also work for it?
Thanks

@tbonfim
Copy link

tbonfim commented Feb 24, 2016

Yeah Andela, it will work for you

@MrBoog
Copy link

MrBoog commented May 5, 2017

Ah. Cool! That's what I need. :)
I guess this line is the point git commit --amend --reset-author

@aditya2337
Copy link

Nice explanation, thanks a tonnn!

@chedadsp
Copy link

chedadsp commented Jan 3, 2018

What if after pushing successfully, you found out it was wrong email, how do I lik it back? Would the above description also work for it?
Thanks

Yes, it would if you have push --force privilege. Just do everything stated above and than do git push --force.

@coolpalani
Copy link

Thanks

@hankliu5
Copy link

Appreciate for saving my life ❤️

@MTammvee
Copy link

Thank You ! 👼

@ethanrweber
Copy link

thanks, this was exactly what I needed lol

@Am1rArsalan
Copy link

Thanks 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment