On Wednesday April 5th 2006 moreau francis wrote: > BTW, what does "--amend" option do ? It doesn't seem to be documented anywhere. This is the original commit text that introduced it: diff-tree b4019f045646b1770a80394da876b8a7c6b8ca7b (from d320a5437f8304cf9ea3ee1898e49d643e005738) Author: Junio C Hamano <junkio@xxxxxxx> Date: Thu Mar 2 21:04:05 2006 -0800 git-commit --amend The new flag is used to amend the tip of the current branch. Prepare the tree object you would want to replace the latest commit as usual (this includes the usual -i/-o and explicit paths), and the commit log editor is seeded with the commit message from the tip of the current branch. The commit you create replaces the current tip -- if it was a merge, it will have the parents of the current tip as parents -- so the current top commit is discarded. It is a rough equivalent for: $ git reset --soft HEAD^ $ ... do something else to come up with the right tree ... $ git commit -c ORIG_HEAD but can be used to amend a merge commit. Signed-off-by: Junio C Hamano <junkio@xxxxxxx> So in the original context you can add separate binaries to a commit of only text files that you just rescued from CVS or something and then change the commit to include these binaries as well. I've sent a separate patch for the documentation for git-commit using Junio's clear explanation. -- Marco Roeland - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html