aac76df5718f4c25ef92900d409ca876d231d534
[invirt/scripts/git-migration.git] / git-migrate
1 #!/usr/bin/python
2
3 import sys
4 import subprocess
5 import shutil
6
7 def clonePackage(base, pkg):
8     # Use --no-follow-parent because we're going to handle that with
9     # grafts.
10     subprocess.check_call(['git', 'svn', 'clone', '--no-follow-parent',
11                            '-Aauthors',
12                            '--no-metadata', '%s/packages/%s' % (base, pkg)],
13                     stdout=subprocess.PIPE)
14     
15     # Then make the repository bare, because git-svn can't do this
16     shutil.move('%s/.git' % pkg, '%s.git' % pkg)
17     shutil.rmtree('%s' % pkg)
18     subprocess.check_call(['git', 'config', 'core.bare', 'true'], cwd='%s.git' % pkg)
19
20 def cloneAllPackages(base):
21     for pkg in open('package-list'):
22         clonePackage(base, pkg.strip())
23
24 if __name__ == '__main__':
25     try:
26         base = sys.argv[1]
27     except:
28         base = 'svn://invirt.mit.edu/trunk'
29     
30     cloneAllPackages(base)