]> asedeno.scripts.mit.edu Git - git.git/blobdiff - git-quiltimport.sh
Merge branch 'sp/maint-index-pack'
[git.git] / git-quiltimport.sh
index 84c8b8ef4fbfa55d503a10006f7f3cecee57391c..d1efa1d7419c23b65af1dccf4b8a00ed0e94c79c 100755 (executable)
@@ -53,7 +53,7 @@ if ! [ -d "$QUILT_PATCHES" ] ; then
 fi
 
 # Temporary directories
-tmp_dir=.dotest
+tmp_dir="$GIT_DIR"/rebase
 tmp_msg="$tmp_dir/msg"
 tmp_patch="$tmp_dir/patch"
 tmp_info="$tmp_dir/info"
@@ -67,7 +67,7 @@ while read patch_name level garbage
 do
        case "$patch_name" in ''|'#'*) continue;; esac
        case "$level" in
-       -p*);;
+       -p*)    ;;
        ''|'#'*)
                level=;;
        *)
@@ -129,7 +129,7 @@ do
        fi
 
        if [ -z "$dry_run" ] ; then
-               git apply --index -C1 $level "$tmp_patch" &&
+               git apply --index -C1 ${level:+"$level"} "$tmp_patch" &&
                tree=$(git write-tree) &&
                commit=$( (echo "$SUBJECT"; echo; cat "$tmp_msg") | git commit-tree $tree -p $commit) &&
                git update-ref -m "quiltimport: $patch_name" HEAD $commit || exit 4