Skip to content

Instantly share code, notes, and snippets.

@yano3
Created November 19, 2011 15:17
Show Gist options
  • Save yano3/1378948 to your computer and use it in GitHub Desktop.
Save yano3/1378948 to your computer and use it in GitHub Desktop.
git commit --amend --reset-author
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:
git config --global user.name "Your Name"
git config --global user.email you@example.com
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
@antont
Copy link

antont commented Mar 27, 2017

that's normal -- it means that when git does the commit for you, it allows you to edit the commit message, by default using the Vi editor, which works so that you can exit it by doing :wq

@AlisterH
Copy link

Doing the global change wasn't enough for me - I had to do git config user.name "..." and git config user.email "..." before trying to amend.

@xyzzy529
Copy link

There is potentially two user.name values set ... One at the --global config and one on the local repository.
If you git config --list the output will have multiple of the same parameters ... the last one in the list is the one used for your current repo.

@coderhh
Copy link

coderhh commented Nov 15, 2017

I clone a repo from account 1 using account 2, after making some changes, i want to push the changes.
But account 2 was denied by remote account 1. So i config the account 1 as the local setting under working directory and ran the reset-author command. After all this, when i commit. It still use account 2 and was denied.

@nafg
Copy link

nafg commented Jul 17, 2020

You can add --no-edit to avoid the editor

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