summaryrefslogtreecommitdiff
path: root/lorry.zip-importer
diff options
context:
space:
mode:
Diffstat (limited to 'lorry.zip-importer')
-rwxr-xr-x[-rw-r--r--]lorry.zip-importer5
1 files changed, 4 insertions, 1 deletions
diff --git a/lorry.zip-importer b/lorry.zip-importer
index d12c296..c177d43 100644..100755
--- a/lorry.zip-importer
+++ b/lorry.zip-importer
@@ -1,5 +1,7 @@
#!/usr/bin/env python
+## Note: Modified for Baserock lorry.
+
## zip archive frontend for git-fast-import
##
## For example:
@@ -22,7 +24,8 @@ if len(argv) < 2:
print 'usage:', argv[0], '<zipfile>...'
exit(1)
-branch_ref = 'refs/heads/import-zips'
+branch_name = 'master'
+branch_ref = 'refs/heads/%s' % branch_name
committer_name = 'Z Ip Creator'
committer_email = 'zip@example.com'