summaryrefslogtreecommitdiff
path: root/git-debpush
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2019-07-22 10:39:56 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2019-07-22 17:08:51 +0100
commitd859eec10fe463619069a01f4489b2a11af31fab (patch)
treed8abbff798f929bc7783ae9f9f0b3bb1964fc4a1 /git-debpush
parent5da0b9edfcc16fa72bcf96436ca7a4bf0c2f9d7d (diff)
git-debpush: Check for unstitched git-debrebase branch
Closes: #932612 Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'git-debpush')
-rwxr-xr-xgit-debpush14
1 files changed, 14 insertions, 0 deletions
diff --git a/git-debpush b/git-debpush
index 8419375..402b1dd 100755
--- a/git-debpush
+++ b/git-debpush
@@ -411,6 +411,20 @@ case "$quilt_mode" in
;;
esac
+# ---- git-debrebase branch format checks
+
+# only check branches, since you can't run `git debrebase conclude` on
+# non-branches
+case "$branch" in
+ refs/heads/*)
+ # see "STITCHING, PSEUDO-MERGES, FFQ RECORD" in git-debrebase(5)
+ ffq_prev_ref="refs/ffq-prev/${branch#refs/}"
+ if git show-ref --quiet --verify "$ffq_prev_ref"; then
+ fail_check unstitched \
+ "this looks like an unstitched git-debrebase branch, which should not be pushed"
+ fi
+esac
+
# ---- Summary
if $failed_check; then