From: Junio C Hamano Date: Thu, 20 Apr 2006 08:20:56 +0000 (-0700) Subject: git-commit --amend: two fixes. X-Git-Tag: v1.3.1~9 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=6a74642c500118164ec331da93ef29b1163301bc;hp=6a74642c500118164ec331da93ef29b1163301bc;p=git.git git-commit --amend: two fixes. When running "git commit --amend" only to fix the commit log message without any content change, we mistakenly showed the git-status output that says "nothing to commit" without commenting it out. If you have already run update-index but you want to amend the top commit, "git commit --amend --only" without any paths should have worked, because --only means "starting from the base commit, update-index these paths only to prepare the index to commit, and perform the commit". However, we refused -o without paths. Signed-off-by: Junio C Hamano ---