Julian Phillips <julian@xxxxxxxxxxxxxxxxx> 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. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html