Skip to content

Commit

Permalink
Clarify git status output.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Oct 24, 2005
1 parent 7744f3b commit 38cc7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-status.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 38cc7ab

Please sign in to comment.