From: Junio C Hamano <gitster@pobox.com>
To: Jari Aalto <jari.aalto@cante.net>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] git-filter-branch.txt: Add picture to explain the graft-id
Date: Tue, 11 Mar 2008 19:51:08 -0700 [thread overview]
Message-ID: <7vzlt48xk3.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <7igcz2xx.fsf@blue.sea.net> (Jari Aalto's message of "Sun, 09 Mar 2008 11:01:14 +0200")
Jari Aalto <jari.aalto@cante.net> writes:
> diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
> index 543a1cf..73939e2 100644
> --- a/Documentation/git-filter-branch.txt
> +++ b/Documentation/git-filter-branch.txt
> @@ -186,7 +186,7 @@ Now, you will get the rewritten history saved in HEAD.
>
> To set a commit (which typically is at the tip of another
> history) to be the parent of the current initial commit, in
> -order to paste the other history behind the current history:
> +order to paste the other history behind the current history.
>
> -------------------------------------------------------------------
> git filter-branch --parent-filter 'sed "s/^\$/-p <graft-id>/"' HEAD
Why? I think ":" in the original is correct here, just like what you can
see in the pre-context in the next hunk.
> @@ -198,6 +198,12 @@ history with a single root (that is, no merge without common ancestors
> happened). If this is not the case, use:
>
> --------------------------------------------------------------------------
> +
> + The plan: supposing we're merging A with B
> + commit sequence A: a-b-c graft-id = b
> + commit sequence B: c'-d'-e' commit-id = c'
> + Result : a-b-c'-d'-e'
> +
> git filter-branch --parent-filter \
> 'test $GIT_COMMIT = <commit-id> && echo "-p <graft-id>" || cat' HEAD
> --------------------------------------------------------------------------
It is not "merging". As seen in the first hunk you are "pasting" (or
grafting).
Also I think it would be easier to read without made-up words like
"xxx-id", if you are illustrating.
The example is unclear what HEAD is. If you are clarifying the example,
it is better to state that we are filtering starting at the tip of the
second sequence.
Perhaps...
Suppose we have these two unrelated histories:
---A---B---C (tip of the branch "one")
---D---E---F (tip of the branch "two")
and the commits C and D have the same trees and are logically at the
corresponding places in the global history. You want to rewrite these
histories by pasting them together at C/D, so that the result looks
like this:
---A---B---D---E---F (rewritten branch "two")
You can use --parent-filter to rewrite the parent of D to be B by
telling it to say "the parent is B" when (and only when) filter-branch
reaches D and processes it (for other commits, you just say "whatever
parents the original commit had is just fine" by running "cat" to emit
what you get from your standard input). Hence, the command line to
filter the history, starting at F, becomes:
git filter-branch --parent-filter '
if test $GIT_COMMIT = D
then
echo "-p B
else
cat
fi
' two
After filter-branch finishes, the branch "two" would have the desired
history.
prev parent reply other threads:[~2008-03-12 2:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-09 9:01 [PATCH] git-filter-branch.txt: Add picture to explain the graft-id Jari Aalto
2008-03-12 2:51 ` 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=7vzlt48xk3.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=jari.aalto@cante.net \
/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).