Mercurial > hg
changeset 13465:fa88fabc1d66 stable
subrepo: disallow all unknown git ref types
author | Eric Eisner <ede@mit.edu> |
---|---|
date | Wed, 23 Feb 2011 10:17:44 -0500 |
parents | da0ddd62b9d8 |
children | f2295f7cd468 |
files | mercurial/subrepo.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/subrepo.py Wed Feb 23 11:42:41 2011 +0100 +++ b/mercurial/subrepo.py Wed Feb 23 10:17:44 2011 -0500 @@ -730,7 +730,8 @@ '%(objectname) %(refname)']) for line in out.split('\n'): revision, ref = line.split(' ') - if ref.startswith('refs/tags/'): + if (not ref.startswith('refs/heads/') and + not ref.startswith('refs/remotes/')): continue if ref.startswith('refs/remotes/') and ref.endswith('/HEAD'): continue # ignore remote/HEAD redirects