Allow git-mergetool to handle paths with a leading space

Signed-off-by: Rogan Dawes <rogan@dawes.za.net>
This commit is contained in:
Rogan Dawes 2008-01-07 09:37:38 +02:00 коммит произвёл Junio C Hamano
Родитель 7ec43959f7
Коммит 2e8fd78195
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -393,8 +393,11 @@ if test $# -eq 0 ; then
echo "No files need merging"
exit 0
fi
echo Merging the files: $files
git ls-files -u | sed -e 's/^[^ ]* //' | sort -u | while read i
echo Merging the files: "$files"
git ls-files -u |
sed -e 's/^[^ ]* //' |
sort -u |
while IFS= read i
do
printf "\n"
merge_file "$i" < /dev/tty > /dev/tty