projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a977d2c
)
[PATCH] git-status-script was missed during the conversion from N -> A
author
Ryan Anderson
<ryan@michonline.com>
Wed, 27 Jul 2005 08:36:08 +0000
(
04:36
-0400)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 27 Jul 2005 18:47:51 +0000
(11:47 -0700)
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>
git-status-script
patch
|
blob
|
history
diff --git
a/git-status-script
b/git-status-script
index
7d47fde
..
e9a0383
100755
(executable)
--- 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