# HG changeset patch # User Alexis S. L. Carvalho # Date 1173575001 10800 # Node ID 1df1baf2002ebae26ffb2037cb4e4948fdaf8947 # Parent 7b5723c95a822624f1c25f3ad6149f2a5f4b890a fix qclone to a remote repo This fixes issue467. -stable still needs something like revision 55578a8d7e84 - mq: allow push if -r is given explicitly. In the meantime, hg qpop -a; hg qclone . ssh://... is a workaround. diff -r 7b5723c95a82 -r 1df1baf2002e hgext/mq.py --- a/hgext/mq.py Sat Mar 10 22:03:20 2007 -0300 +++ b/hgext/mq.py Sat Mar 10 22:03:21 2007 -0300 @@ -1504,7 +1504,11 @@ if sr.mq.applied: qbase = revlog.bin(sr.mq.applied[0].rev) if not hg.islocal(dest): - destrev = sr.parents(qbase)[0] + heads = dict.fromkeys(sr.heads()) + for h in sr.heads(qbase): + del heads[h] + destrev = heads.keys() + destrev.append(sr.changelog.parents(qbase)[0]) ui.note(_('cloning main repo\n')) sr, dr = hg.clone(ui, sr, dest, pull=opts['pull'],