# HG changeset patch # User Benoit Boissinot # Date 1224941698 -7200 # Node ID 37657dc5c65ee40020ab553752c99714e797394c # Parent 127a624406b47e5862d7a22c7b014893a75add93# Parent a8e4e599e17f9c84921a70dee021c942c2b65886 merge with crew diff -r 127a624406b4 -r 37657dc5c65e hgext/convert/git.py --- 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]]