diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2005-10-10 13:58:52 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-10 13:58:52 -0700 |
commit | d52920e397918fdba0b0ac0bc46633fab807e681 (patch) | |
tree | f1dae018530e0c402c89c0f179c3b3d37307e57e /git-status.sh | |
parent | 5fb41e8abf29a4c24b8e9e95277cfad349a4d1da (diff) | |
download | git-d52920e397918fdba0b0ac0bc46633fab807e681.tar.gz git-d52920e397918fdba0b0ac0bc46633fab807e681.tar.xz |
Teach git-status about spaces in file names also on MacOSX
Not all sed understands '\t' and consequently cuts off every
file name at the first "t" (or backslash...).
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-status.sh')
-rwxr-xr-x | git-status.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/git-status.sh b/git-status.sh index 6e2783a7b..fbdd37753 100755 --- a/git-status.sh +++ b/git-status.sh @@ -45,10 +45,10 @@ then sed -e ' s/^:// h - s/^[^\t]*// + s/^[^ ]*// s/ /\\ /g x - s/\t.*$// + s/ .*$// G s/\n/ /' | report "Updated but not checked in" "will commit" @@ -71,10 +71,10 @@ git-diff-files | sed -e ' s/^:// h - s/^[^\t]*// + s/^[^ ]*// s/ /\\ /g x - s/\t.*$// + s/ .*$// G s/\n/ /' | report "Changed but not updated" "use git-update-index to mark for commit" |