X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-am.sh;h=0bd290b4ae990df4e0553700fa4fa38696e2b980;hb=42e52e358be1da6e3500a8d0d930ed08a8dd3715;hp=906f91f1884a2df1b55dd00a229899ec6a47bb6e;hpb=507fba2b98a85fab42a89d93240d2e09d6245d26;p=git.git diff --git a/git-am.sh b/git-am.sh index 906f91f18..0bd290b4a 100755 --- a/git-am.sh +++ b/git-am.sh @@ -128,15 +128,18 @@ fall_back_3way () { mkdir "$dotest/patch-merge-tmp-dir" # First see if the patch records the index info that we can use. - git apply --build-fake-ancestor "$dotest/patch-merge-tmp-index" \ - "$dotest/patch" && + cmd="git apply $git_apply_opt --build-fake-ancestor" && + cmd="$cmd "'"$dotest/patch-merge-tmp-index" "$dotest/patch"' && + eval "$cmd" && GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ git write-tree >"$dotest/patch-merge-base+" || cannot_fallback "$(gettext "Repository lacks necessary blobs to fall back on 3-way merge.")" say Using index info to reconstruct a base tree... - if GIT_INDEX_FILE="$dotest/patch-merge-tmp-index" \ - git apply --cached <"$dotest/patch" + + cmd='GIT_INDEX_FILE="$dotest/patch-merge-tmp-index"' + cmd="$cmd git apply --cached $git_apply_opt"' <"$dotest/patch"' + if eval "$cmd" then mv "$dotest/patch-merge-base+" "$dotest/patch-merge-base" mv "$dotest/patch-merge-tmp-index" "$dotest/patch-merge-index"