aboutsummaryrefslogtreecommitdiff
path: root/git-status.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-10-24 15:11:47 -0700
committerJunio C Hamano <junkio@cox.net>2005-10-24 15:11:47 -0700
commit38cc7ab8144e111b47ac0ad3fcf6cb70d546e473 (patch)
treef39ac158ebd3d63dac4b72c37e9c5c646c1ef933 /git-status.sh
parent7744f3b8882812d4ff3e75a3c84763895f5d9cdf (diff)
downloadgit-38cc7ab8144e111b47ac0ad3fcf6cb70d546e473.tar.gz
git-38cc7ab8144e111b47ac0ad3fcf6cb70d546e473.tar.xz
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 <junkio@cox.net>
Diffstat (limited to 'git-status.sh')
-rwxr-xr-xgit-status.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-status.sh b/git-status.sh
index 29c2b1169..62a24a9b0 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;
}