author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
Sat, 25 Oct 2008 15:34:58 +0200 | |
changeset 7245 | 37657dc5c65e |
parent 7244 | 127a624406b4 (current diff) |
parent 7243 | a8e4e599e17f (diff) |
child 7246 | 2fef3051ebb3 |
--- a/hgext/convert/git.py Fri Oct 24 20:46:56 2008 +0200 +++ b/hgext/convert/git.py Sat Oct 25 15:34:58 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]]