Skip to content
Snippets Groups Projects
Commit a989866e authored by Sverre Rabbelier's avatar Sverre Rabbelier
Browse files

Make it possible to limit what branches are imported

parent 6701ab80
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,8 @@
else:
self.gitdir = self.repo.join('git')
self.importbranch = ui.config('git', 'importbranch')
self.init_if_missing()
self.load_git()
self.load_map()
......@@ -494,6 +496,9 @@
if remote_name:
todo = self.git.remote_refs(remote_name).values()[:]
elif self.importbranch:
branches = self.importbranch.split(',')
todo = [self.git.ref(i.strip()) for i in branches]
else:
todo = self.git.heads().values()[:]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment