convert: return remote branches in git source
authorEdouard Gomez <ed.gomez@free.fr>
Sun, 19 Oct 2008 00:32:23 +0200
changeset 7243 a8e4e599e17f
parent 7237 b9bf36905b55
child 7245 37657dc5c65e
convert: return remote branches in git source When converting git repos, all stuff happening on branches seems to be ignored. This is caused by the fact a "git clone" of a remote git repo has all its branches prefixed with "origin/". By chance, the "origin/master" branch is always linked to a local "master" branch. So getheads() returns only the master head, and it ignores all the other heads. Make sure getheads() returns all heads, forcing remote branches to be return by git-rev-parse.
hgext/convert/git.py
--- a/hgext/convert/git.py	Fri Oct 24 16:20:53 2008 +0200
+++ b/hgext/convert/git.py	Sun Oct 19 00:32:23 2008 +0200
@@ -38,7 +38,7 @@
 
     def getheads(self):
         if not self.rev:
-            return self.gitcmd('git rev-parse --branches').read().splitlines()
+            return self.gitcmd('git rev-parse --branches --remotes').read().splitlines()
         else:
             fh = self.gitcmd("git rev-parse --verify %s" % self.rev)
             return [fh.read()[:-1]]