From 6d23729c4dd314393f3e9596d4dcdd106cee4a11 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 22 Apr 2018 22:43:56 +0100 Subject: git-debrebase: do_stitch: Introduce $unclean argument Update all call sites. No functional change just yet. Signed-off-by: Ian Jackson --- git-debrebase | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'git-debrebase') diff --git a/git-debrebase b/git-debrebase index 46ea06a..5aaa660 100755 --- a/git-debrebase +++ b/git-debrebase @@ -1083,8 +1083,8 @@ sub stitch ($$$$$) { update_head $old_head, $new_head, "stitch: $prose"; } -sub do_stitch ($) { - my ($prose) = @_; +sub do_stitch ($;$) { + my ($prose, $unclean) = @_; my ($ffq_prev, $gdrlast, $ffq_prev_commitish) = ffq_prev_info(); if (!$ffq_prev_commitish) { @@ -1093,7 +1093,7 @@ sub do_stitch ($) { } my $dangling_head = get_head(); - keycommits $dangling_head, \&snag, \&snag, \&snag; + keycommits $dangling_head, $unclean,$unclean,$unclean; stitch($dangling_head, $ffq_prev, $gdrlast, $ffq_prev_commitish, $prose); } @@ -1316,14 +1316,14 @@ sub cmd_stitch () { my $prose = 'stitch'; GetOptions('prose=s', \$prose) or die badusage("bad options to stitch"); badusage "no arguments allowed" if @ARGV; - do_stitch($prose); + do_stitch $prose, \&snag; } sub cmd_prepush () { cmd_stitch(); } sub cmd_quick () { badusage "no arguments allowed" if @ARGV; do_launder_head 'launder for git-debrebase quick'; - do_stitch 'quick'; + do_stitch 'quick', \&snag; } sub cmd_conclude () { @@ -1336,7 +1336,7 @@ sub cmd_conclude () { badusage "no arguments allowed" if @ARGV; do_launder_head 'launder for git-debrebase quick'; - do_stitch 'quick'; + do_stitch 'quick', \&snag; } sub cmd_convert_from_gbp () { -- cgit v1.2.3