From: "Shawn O. Pearce" <spearce@spearce.org>
To: Julian Phillips <julian@quantumfyre.co.uk>
Cc: git@vger.kernel.org
Subject: Re: incremental fast-import
Date: Thu, 26 Jul 2007 20:51:03 -0400 [thread overview]
Message-ID: <20070727005103.GC20052@spearce.org> (raw)
In-Reply-To: <Pine.LNX.4.64.0707262242460.14017@beast.quantumfyre.co.uk>
Julian Phillips <julian@quantumfyre.co.uk> wrote:
> I seem to be missing something though. I can't seem to get it to work
> when run in an incremental manner.
>
> I have a saved stream of fast-import commands. Every time I run this
> through fast import I get the exact same marks file out. This is good.
>
> However if I feed it in in two chunks, then nearly all of the SHA1s
> generated in the second run are different to those produced in a single
> pass. In addition I get a pair of "warning: Not updating
> refs/heads/BUG_101_BRANCH (new tip <some sha1> does not contain <other
> sha1>)" messages. This is not so good.
>
> I'm using the --import-marks and --export-marks options. Is there
> something else I need to do to be able to run fast-import in an
> incremental manner?
I'm guessing you didn't restart the branches at the start of the
second import. You need to do something like this to get the import
going again:
commit refs/heads/BUG_101_BRANCH
from refs/heads/BUG_101_BRANCH^0
...
or because you imported the marks you can use a mark:
commit refs/heads/BUG_101_BRANCH
from :18981
...
where 18981 was the last revision on BUG_101_BRANCH that the frontend
had imported during the last run.
fast-import doesn't assume the local branches already exist.
It actually assumes its importing from scratch every time. The
frontend tool needs to restart the branch if that is what it wants.
In other words, by splitting the file in half you actually also
split the history in half, and got two root commits, one of which
was in the middle of your history. :-(
--
Shawn.
next prev parent reply other threads:[~2007-07-27 0:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-26 21:47 incremental fast-import Julian Phillips
2007-07-27 0:51 ` Shawn O. Pearce [this message]
2007-07-27 7:44 ` Simon 'corecode' Schubert
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=20070727005103.GC20052@spearce.org \
--to=spearce@spearce.org \
--cc=git@vger.kernel.org \
--cc=julian@quantumfyre.co.uk \
/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).