From: Junio C Hamano <gitster@pobox.com>
To: Kevin Ballard <kevin@sb.org>
Cc: git@vger.kernel.org, "Michael S. Tsirkin" <mst@dev.mellanox.co.il>
Subject: Re: [PATCH] git-am: Pass the --directory option through to git-apply
Date: Sat, 30 Aug 2008 23:30:30 -0700 [thread overview]
Message-ID: <7vfxold7cp.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <1220048870-97641-1-git-send-email-kevin@sb.org> (Kevin Ballard's message of "Fri, 29 Aug 2008 15:27:50 -0700")
Kevin Ballard <kevin@sb.org> writes:
> diff --git a/Documentation/git-am.txt b/Documentation/git-am.txt
> index b9c6fac..64c8178 100644
> --- a/Documentation/git-am.txt
> +++ b/Documentation/git-am.txt
> @@ -66,6 +66,7 @@ default. You could use `--no-utf8` to override this.
>
> -C<n>::
> -p<n>::
> +--directory=<root>::
> These flags are passed to the 'git-apply' (see linkgit:git-apply[1])
> program that applies
> the patch.
> diff --git a/git-am.sh b/git-am.sh
> index aa60261..7e7a86f 100755
> --- a/git-am.sh
> +++ b/git-am.sh
> @@ -18,6 +18,7 @@ k,keep pass -k flag to git-mailinfo
> whitespace= pass it through git-apply
> C= pass it through git-apply
> p= pass it through git-apply
> +directory= pass it through git-apply
> resolvemsg= override error message when patch failure occurs
> r,resolved to be used after a patch failure
> skip skip the current patch
> @@ -155,7 +156,7 @@ do
> ;;
> --resolvemsg)
> shift; resolvemsg=$1 ;;
> - --whitespace)
> + --whitespace|--directory)
> git_apply_opt="$git_apply_opt $1=$2"; shift ;;
> -C|-p)
> git_apply_opt="$git_apply_opt $1$2"; shift ;;
Thanks, will queue.
This inherits an ancient breakage that was introduced to the --whitespace
option by 67dad68 (add -C[NUM] to git-am, 2007-02-08), in that you need to
give the next "git am" session the same option when you get a conflict and
need to restart. We should fix this ancient breakage by recording the
miscellaneous options that we append to $git_apply_opt variable (we should
remove the use of "$dotest/whitespace" that is now a no-op but 67dad68 did
not remove). That is a separate topic anyway, but the end result should:
* Save the options in effect in $dotest/, just like "sign", "utf8" and
"keep" are kept;
* Upon command startup, read the saved options, and then let the command
line options override them (which is not what the current code does, by
the way);
so that you can give necessary --directory, --whitespace, -C etc. options
when you feed your series to "git-am", and after fixing up a rejected
patch, you can continue without typing the same set of options again.
prev parent reply other threads:[~2008-08-31 6:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-29 22:27 [PATCH] git-am: Pass the --directory option through to git-apply Kevin Ballard
2008-08-31 6:30 ` Junio C Hamano [this message]
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=7vfxold7cp.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=kevin@sb.org \
--cc=mst@dev.mellanox.co.il \
/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).