Browse Source

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>
maint
Johannes Schindelin 19 years ago committed by Junio C Hamano
parent
commit
d52920e397
  1. 8
      git-status.sh

8
git-status.sh

@ -45,10 +45,10 @@ then @@ -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 | @@ -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"

Loading…
Cancel
Save