git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kevin Daudt <me@ikke.info>
To: Anthony Wong <anthony.wong@canonical.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] cherry-pick: add --keep-existing-origin option
Date: Sat, 28 Oct 2017 16:21:20 +0200	[thread overview]
Message-ID: <20171028142120.GA12833@alpha.vpn.ikke.info> (raw)
In-Reply-To: <20171028120440.2022-1-yp@anthonywong.net>

On Sat, Oct 28, 2017 at 08:04:40PM +0800, Anthony Wong wrote:
> When cherry-picking from a commit whose commit message already
> contains the "(cherry picked from commit ...)" line, this option will
> not add another one. This is useful when you are cherry-picking from a
> bunch of commits, some are cherry-picks and already contains the
> upstream hash but some do not. Use with -x.
> 
> Signed-off-by: Anthony Wong <yp@anthonywong.net>
> ---
>  Documentation/git-cherry-pick.txt |  8 ++++++++
>  builtin/revert.c                  |  2 ++
>  sequencer.c                       | 14 ++++++++------
>  sequencer.h                       |  1 +
>  4 files changed, 19 insertions(+), 6 deletions(-)
> 
> diff --git a/Documentation/git-cherry-pick.txt b/Documentation/git-cherry-pick.txt
> index d35d771fc..7a074511f 100644
> --- a/Documentation/git-cherry-pick.txt
> +++ b/Documentation/git-cherry-pick.txt
> @@ -71,6 +71,14 @@ OPTIONS
>  	development branch), adding this information can be
>  	useful.
>  
> +--keep-existing-origin::
> +	This option has to be used with -x to take effect. When
> +	cherry-picking from a commit whose commit message already
> +	contains the "(cherry picked from commit ...)" line, this
> +	option will not add another one. This is useful when you are
> +	cherry-picking from a bunch of commits, some are cherry-picks
> +	and already contains the upstream hash but some do not.
> +
>  -r::
>  	It used to be that the command defaulted to do `-x`
>  	described above, and `-r` was to disable it.  Now the
> diff --git a/builtin/revert.c b/builtin/revert.c
> index b9d927eb0..a1900cc1d 100644
> --- a/builtin/revert.c
> +++ b/builtin/revert.c
> @@ -122,6 +122,7 @@ static int run_sequencer(int argc, const char **argv, struct replay_opts *opts)
>  			OPT_BOOL(0, "allow-empty", &opts->allow_empty, N_("preserve initially empty commits")),
>  			OPT_BOOL(0, "allow-empty-message", &opts->allow_empty_message, N_("allow commits with empty messages")),
>  			OPT_BOOL(0, "keep-redundant-commits", &opts->keep_redundant_commits, N_("keep redundant, empty commits")),
> +			OPT_BOOL(0, "keep-existing-origin", &opts->keep_existing_origin, N_("do not add another hash if one already exists, use with -x")),
>  			OPT_END(),
>  		};
>  		options = parse_options_concat(options, cp_extra);
> @@ -157,6 +158,7 @@ static int run_sequencer(int argc, const char **argv, struct replay_opts *opts)
>  				"--ff", opts->allow_ff,
>  				"--rerere-autoupdate", opts->allow_rerere_auto == RERERE_AUTOUPDATE,
>  				"--no-rerere-autoupdate", opts->allow_rerere_auto == RERERE_NOAUTOUPDATE,
> +				"--keep-existing-origin", opts->keep_existing_origin,
>  				NULL);
>  	}
>  
> diff --git a/sequencer.c b/sequencer.c
> index f2a10cc4f..c96add16e 100644
> --- a/sequencer.c
> +++ b/sequencer.c
> @@ -1050,12 +1050,14 @@ static int do_pick_commit(enum todo_command command, struct commit *commit,
>  			strbuf_addstr(&msgbuf, p);
>  
>  		if (opts->record_origin) {
> -			strbuf_complete_line(&msgbuf);
> -			if (!has_conforming_footer(&msgbuf, NULL, 0))
> -				strbuf_addch(&msgbuf, '\n');
> -			strbuf_addstr(&msgbuf, cherry_picked_prefix);
> -			strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
> -			strbuf_addstr(&msgbuf, ")\n");
> +			if (!opts->keep_existing_origin || strstr(msgbuf.buf, cherry_picked_prefix) == NULL) {
> +				strbuf_complete_line(&msgbuf);
> +				if (!has_conforming_footer(&msgbuf, NULL, 0))
> +					strbuf_addch(&msgbuf, '\n');
> +				strbuf_addstr(&msgbuf, cherry_picked_prefix);
> +				strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid));
> +				strbuf_addstr(&msgbuf, ")\n");
> +			}
>  		}
>  	}
>  
> diff --git a/sequencer.h b/sequencer.h
> index 6f3d3df82..a907c0947 100644
> --- a/sequencer.h
> +++ b/sequencer.h
> @@ -24,6 +24,7 @@ struct replay_opts {
>  	int allow_empty;
>  	int allow_empty_message;
>  	int keep_redundant_commits;
> +	int keep_existing_origin;
>  	int verbose;
>  
>  	int mainline;
> -- 
> 2.14.1
> 

I'm wondering if it isn't better to detect that there is already an
origin present and not add another one. 

Or are there situations where you do want multiple cherry-pick origins?

Kevin

  reply	other threads:[~2017-10-28 14:21 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-28 12:04 [PATCH] cherry-pick: add --keep-existing-origin option Anthony Wong
2017-10-28 14:21 ` Kevin Daudt [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-10-28 15:45 Anthony Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171028142120.GA12833@alpha.vpn.ikke.info \
    --to=me@ikke.info \
    --cc=anthony.wong@canonical.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).