diff options
author | Ryan Anderson <ryan@michonline.com> | 2005-07-27 04:36:08 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-07-27 11:47:51 -0700 |
commit | b55db7ba283c1f7d2ff3cbc7e351d3ae504c9b1d (patch) | |
tree | bcd22c260188877eab1600add591dca20f7b3f3f | |
parent | Deb Packaging fixes: Build against Mozilla libs for Debian, conflict with "git" (diff) | |
download | tgif-b55db7ba283c1f7d2ff3cbc7e351d3ae504c9b1d.tar.xz |
[PATCH] git-status-script was missed during the conversion from N -> A
git-status-script was missed during the conversion from "N" to "A" as
the new-file marker flag.
Signed-off-by: Ryan Anderson <ryan@michonline.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | git-status-script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-status-script b/git-status-script index 7d47fdea79..e9a0383441 100755 --- a/git-status-script +++ b/git-status-script @@ -18,7 +18,7 @@ report () { T ) echo "# typechange: $name";; C*) echo "# copied: $name -> $newname";; R*) echo "# renamed: $name -> $newname";; - N*) echo "# new file: $name";; + A*) echo "# new file: $name";; U ) echo "# unmerged: $name";; esac done |