X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=topgit.git;a=blobdiff_plain;f=tg-import.sh;h=b036b8645f184f54ca14878cdc02312f4f925eaf;hp=424f51847ac750ee518e5d66b620cb900033a095;hb=4956e5734d10ac88fcca7276b402f1157644cb9b;hpb=67ae5b2708ea78bf3d9eaa21cb4f0096cfeb4012 diff --git a/tg-import.sh b/tg-import.sh index 424f518..b036b86 100644 --- a/tg-import.sh +++ b/tg-import.sh @@ -72,9 +72,12 @@ process_commit() info "---- Importing $commit to $branch_name" tg create "$branch_name" $basedep basedep= - git cherry-pick --no-commit "$commit" get_commit_msg "$commit" > .topmsg git add -f .topmsg .topdeps + if ! git cherry-pick --no-commit "$commit"; then + info "The commit will also finish the import of this patch." + exit 2 + fi git commit -C "$commit" info "++++ Importing $commit finished" }