diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-30 13:53:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-30 18:10:46 -0700 |
commit | 2036d841020b7500eca7d568bd0c353b4fe73408 (patch) | |
tree | bb1208cb084fcbe33ab225db7dec133a5eb19d30 /git-status-script | |
parent | 866b973b5d418622cbe28fea85169379dcb30f9d (diff) | |
download | git-2036d841020b7500eca7d568bd0c353b4fe73408.tar.gz git-2036d841020b7500eca7d568bd0c353b4fe73408.tar.xz |
[PATCH] Buglets fix in the new two scripts
Should be obvious...
- Use $VISUAL, $EDITOR, in this order if set, and fall back on
vi.
- Status R, C, D, N usually are followed by number, so adjust
case arms to that pattern.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'git-status-script')
-rwxr-xr-x | git-status-script | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/git-status-script b/git-status-script index 72a93f74e..f91bb5589 100755 --- a/git-status-script +++ b/git-status-script @@ -13,13 +13,13 @@ report () { trailer="# " case "$status" in - M) echo "# modified: $name";; - D) echo "# deleted: $name";; - T) echo "# typechange: $name";; - C) echo "# copied: $name -> $newname";; - R) echo "# renamed: $name -> $newname";; - N) echo "# new file: $name";; - U) echo "# unmerged: $name";; + M ) echo "# modified: $name";; + D*) echo "# deleted: $name";; + T ) echo "# typechange: $name";; + C*) echo "# copied: $name -> $newname";; + R*) echo "# renamed: $name -> $newname";; + N*) echo "# new file: $name";; + U ) echo "# unmerged: $name";; esac done echo -n "$trailer" |