mirror of
https://github.com/frej/fast-export.git
synced 2025-11-02 01:05:48 +01:00
Don't use checkpoint
As git-fast-import already generates at least one pack per run, don't even further split these up on a (default) 1k changeset boundary. Also rework the documentation on that one a little. Signed-off-by: Rocco Rutte <pdmef@gmx.net>
This commit is contained in:
@@ -17,8 +17,8 @@ import os
|
||||
user_re=re.compile('[^<]+ <[^>]+>$')
|
||||
# git branch for hg's default 'HEAD' branch
|
||||
cfg_master='master'
|
||||
# insert 'checkpoint' command after this many commits
|
||||
cfg_checkpoint_count=1000
|
||||
# insert 'checkpoint' command after this many commits or none at all if 0
|
||||
cfg_checkpoint_count=0
|
||||
|
||||
def usage(ret):
|
||||
sys.stderr.write(__doc__)
|
||||
@@ -54,7 +54,7 @@ def wr(msg=''):
|
||||
|
||||
def checkpoint(count):
|
||||
count=count+1
|
||||
if count%cfg_checkpoint_count==0:
|
||||
if cfg_checkpoint_count>0 and count%cfg_checkpoint_count==0:
|
||||
sys.stderr.write("Checkpoint after %d commits\n" % count)
|
||||
wr('checkpoint')
|
||||
wr()
|
||||
|
||||
Reference in New Issue
Block a user