Mercurial > public > mercurial-scm > hg
diff mercurial/exchange.py @ 26855:9350f00a7b23 stable
exchange: do not attempt clone bundle if local repo is non-empty (issue4932)
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Tue, 03 Nov 2015 12:16:54 -0800 |
parents | 58f1645f72c3 |
children | c4a7bbc78c74 |
line wrap: on
line diff
--- a/mercurial/exchange.py Tue Nov 03 12:15:14 2015 -0800 +++ b/mercurial/exchange.py Tue Nov 03 12:16:54 2015 -0800 @@ -1658,6 +1658,10 @@ if not repo.ui.configbool('experimental', 'clonebundles', False): return + # Only run if local repo is empty. + if len(repo): + return + if pullop.heads: return