From: Junio C Hamano Date: Mon, 24 Oct 2005 22:11:47 +0000 (-0700) Subject: Clarify git status output. X-Git-Tag: v0.99.9~55 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=38cc7ab8144e111b47ac0ad3fcf6cb70d546e473;p=git.git Clarify git status output. What we list as "Ignored files" are not "ignored". Rather, it is the list of "not listed in the to-be-ignored files, but exists -- you may be forgetting to add them". Pointed out by Daniel. Signed-off-by: Junio C Hamano --- diff --git a/git-status.sh b/git-status.sh index 29c2b116..62a24a9b 100755 --- a/git-status.sh +++ b/git-status.sh @@ -90,7 +90,7 @@ perl -e '$/ = "\0"; s|\n|\\n|g; s/^/# /; if (!$shown) { - print "#\n# Ignored files:\n"; + print "#\n# Untracked files:\n"; print "# (use \"git add\" to add to commit)\n#\n"; $shown = 1; }