Mercurial > hg
changeset 7243:a8e4e599e17f
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.
author | Edouard Gomez <ed.gomez@free.fr> |
---|---|
date | Sun, 19 Oct 2008 00:32:23 +0200 |
parents | b9bf36905b55 |
children | 37657dc5c65e |
files | hgext/convert/git.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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]]