måndag 22 januari 2007 21:37 skrev J. Bruce Fields:
If I got the author wrong on a commit, is there a quick way to fix it
(e.g. by passing the right arguments or environment variables to commit
--amend)?
Set these:
GIT_AUTHOR_EMAIL
GIT_AUTHOR_NAME
GIT_COMMITTER_EMAIL
GIT_COMMITTER_NAME
-- robin
On Mon, Jan 22, 2007 at 09:50:16PM +0100, Robin Rosenberg wrote:
måndag 22 januari 2007 21:37 skrev J. Bruce Fields:
quoted
If I got the author wrong on a commit, is there a quick way to fix it
(e.g. by passing the right arguments or environment variables to commit
--amend)?
Set these:
GIT_AUTHOR_EMAIL
GIT_AUTHOR_NAME
GIT_COMMITTER_EMAIL
GIT_COMMITTER_NAME
That doesn't seem to work in this case, since with the commands that
take an existing commit as a model (like commit --amend and commit -c),
the author information from the existing commit overrides those
environment variables. Which is normally what you want.
--b.
"J. Bruce Fields" wrote:
If I got the author wrong on a commit, is there a quick way to fix it
(e.g. by passing the right arguments or environment variables to commit
--amend)?
Use cogito: cg commit --amend -e
You can edit the author name+email in the commit message.
-- Hannes