[PATCH] Quote the missing GIT_DIR.
Signed-off-by: Santi Béjar <sbejar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
85912b0673
commit
df34297af1
@ -198,7 +198,7 @@ else
|
|||||||
PARENTS=""
|
PARENTS=""
|
||||||
fi
|
fi
|
||||||
git-status >>.editmsg
|
git-status >>.editmsg
|
||||||
if [ "$?" != "0" -a ! -f $GIT_DIR/MERGE_HEAD ]
|
if [ "$?" != "0" -a ! -f "$GIT_DIR/MERGE_HEAD" ]
|
||||||
then
|
then
|
||||||
rm -f .editmsg
|
rm -f .editmsg
|
||||||
git-status
|
git-status
|
||||||
|
@ -49,7 +49,7 @@ rsync_slurped_objects=
|
|||||||
|
|
||||||
if test "" = "$append"
|
if test "" = "$append"
|
||||||
then
|
then
|
||||||
: >$GIT_DIR/FETCH_HEAD
|
: >"$GIT_DIR/FETCH_HEAD"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
append_fetch_head () {
|
append_fetch_head () {
|
||||||
@ -86,11 +86,11 @@ append_fetch_head () {
|
|||||||
if git-cat-file commit "$head_" >/dev/null 2>&1
|
if git-cat-file commit "$head_" >/dev/null 2>&1
|
||||||
then
|
then
|
||||||
headc_=$(git-rev-parse --verify "$head_^0") || exit
|
headc_=$(git-rev-parse --verify "$head_^0") || exit
|
||||||
echo "$headc_ $not_for_merge_ $note_" >>$GIT_DIR/FETCH_HEAD
|
echo "$headc_ $not_for_merge_ $note_" >>"$GIT_DIR/FETCH_HEAD"
|
||||||
echo >&2 "* committish: $head_"
|
echo >&2 "* committish: $head_"
|
||||||
echo >&2 " $note_"
|
echo >&2 " $note_"
|
||||||
else
|
else
|
||||||
echo "$head_ not-for-merge $note_" >>$GIT_DIR/FETCH_HEAD
|
echo "$head_ not-for-merge $note_" >>"$GIT_DIR/FETCH_HEAD"
|
||||||
echo >&2 "* non-commit: $head_"
|
echo >&2 "* non-commit: $head_"
|
||||||
echo >&2 " $note_"
|
echo >&2 " $note_"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user