From: Junio C Hamano Date: Sun, 12 Feb 2006 21:05:53 +0000 (-0800) Subject: git-commit: show dirtiness including index. X-Git-Tag: v1.2.0~2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c5e09c1fbec5dc1c15bcfe21e1a600f9e4b4e419;p=git-core%2Fgit.git git-commit: show dirtiness including index. Earlier, when we switched a branch we used diff-files to show paths that are dirty in the working tree. But we allow switching branches with updated index ("read-tree -m -u $old $new" works that way), and only showing paths that have differences in the working tree but not paths that are different in index was confusing. This shows both as modified from the top commit of the branch we just have switched to. Signed-off-by: Junio C Hamano --- diff --git a/git-checkout.sh b/git-checkout.sh index d99688fbf..6a87c717e 100755 --- a/git-checkout.sh +++ b/git-checkout.sh @@ -165,7 +165,8 @@ else exit 0 ) saved_err=$? - git diff-files --name-status + test "$new" = "$old" || + git diff-index --name-status "$new" (exit $saved_err) fi