Skip to content

Commit

Permalink
vcs-svn: use mark from previous import for parent commit
Browse files Browse the repository at this point in the history
With this patch, overlapping incremental imports work.

Signed-off-by: David Barr <david.barr@cordelta.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
  • Loading branch information
David Barr authored and Jonathan Nieder committed Mar 7, 2011
1 parent 1ae469b commit dd3f42a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcs-svn/fast_export.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void fast_export_begin_commit(uint32_t revision, uint32_t author, char *log,
log, gitsvnline);
if (!first_commit_done) {
if (revision > 1)
printf("from refs/heads/master^0\n");
printf("from :%"PRIu32"\n", revision - 1);
first_commit_done = 1;
}
}
Expand Down

0 comments on commit dd3f42a

Please sign in to comment.