Skip to content

Commit

Permalink
Fixing path quoting in git-rebase
Browse files Browse the repository at this point in the history
git-rebase used to fail when run from a path containing a space.

Signed-off-by: Jonathan del Strother <jon.delStrother@bestbefore.tv>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
Jonathan del Strother authored and gitster committed Nov 2, 2007
1 parent bfc07db commit f45e867
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions git-rebase.sh
Expand Up @@ -59,7 +59,7 @@ continue_merge () {
die "$RESOLVEMSG"
fi

cmt=`cat $dotest/current`
cmt=`cat "$dotest/current"`
if ! git diff-index --quiet HEAD
then
if ! git-commit -C "$cmt"
Expand All @@ -84,14 +84,14 @@ continue_merge () {
}

call_merge () {
cmt="$(cat $dotest/cmt.$1)"
cmt="$(cat "$dotest/cmt.$1")"
echo "$cmt" > "$dotest/current"
hd=$(git rev-parse --verify HEAD)
cmt_name=$(git symbolic-ref HEAD)
msgnum=$(cat $dotest/msgnum)
end=$(cat $dotest/end)
msgnum=$(cat "$dotest/msgnum")
end=$(cat "$dotest/end")
eval GITHEAD_$cmt='"${cmt_name##refs/heads/}~$(($end - $msgnum))"'
eval GITHEAD_$hd='"$(cat $dotest/onto_name)"'
eval GITHEAD_$hd='$(cat "$dotest/onto_name")'
export GITHEAD_$cmt GITHEAD_$hd
git-merge-$strategy "$cmt^" -- "$hd" "$cmt"
rv=$?
Expand Down Expand Up @@ -140,10 +140,10 @@ do
}
if test -d "$dotest"
then
prev_head="`cat $dotest/prev_head`"
end="`cat $dotest/end`"
msgnum="`cat $dotest/msgnum`"
onto="`cat $dotest/onto`"
prev_head=$(cat "$dotest/prev_head")
end=$(cat "$dotest/end")
msgnum=$(cat "$dotest/msgnum")
onto=$(cat "$dotest/onto")
continue_merge
while test "$msgnum" -le "$end"
do
Expand All @@ -160,11 +160,11 @@ do
if test -d "$dotest"
then
git rerere clear
prev_head="`cat $dotest/prev_head`"
end="`cat $dotest/end`"
msgnum="`cat $dotest/msgnum`"
prev_head=$(cat "$dotest/prev_head")
end=$(cat "$dotest/end")
msgnum=$(cat "$dotest/msgnum")
msgnum=$(($msgnum + 1))
onto="`cat $dotest/onto`"
onto=$(cat "$dotest/onto")
while test "$msgnum" -le "$end"
do
call_merge "$msgnum"
Expand Down

0 comments on commit f45e867

Please sign in to comment.