# HG changeset patch # User Benoit Boissinot # Date 1263246084 -3600 # Node ID 826bb566541c4ecc8809eb81c6ba76620885a047 # Parent 192c39586787280159ca1ee8694afa5d6f32052c# Parent 9f0c7be7c46cb5b074cd6a0db819b9cdff3d4433 merge crew together diff -r 9f0c7be7c46c -r 826bb566541c hgext/relink.py --- a/hgext/relink.py Mon Jan 11 21:45:28 2010 +0100 +++ b/hgext/relink.py Mon Jan 11 22:41:24 2010 +0100 @@ -48,7 +48,7 @@ try: remotelock = src.lock() try: - candidates = collect(src.store.path, ui) + candidates = sorted(collect(src.store.path, ui)) targets = prune(candidates, src.store.path, repo.store.path, ui) do_relink(src.store.path, repo.store.path, targets, ui) finally: diff -r 9f0c7be7c46c -r 826bb566541c mercurial/commands.py --- a/mercurial/commands.py Mon Jan 11 21:45:28 2010 +0100 +++ b/mercurial/commands.py Mon Jan 11 22:41:24 2010 +0100 @@ -2443,7 +2443,7 @@ will be overwritten if the merge is retried with resolve. The -m/--mark switch should be used to mark the file as resolved. - You can specify a set of files to operate on, or use the -a/-all + You can specify a set of files to operate on, or use the -a/--all switch to select all unresolved files. This command also allows listing resolved files and manually diff -r 9f0c7be7c46c -r 826bb566541c mercurial/subrepo.py --- a/mercurial/subrepo.py Mon Jan 11 21:45:28 2010 +0100 +++ b/mercurial/subrepo.py Mon Jan 11 22:41:24 2010 +0100 @@ -312,7 +312,7 @@ def remove(self): if self.dirty(): - self._repo.ui.warn(_('not removing repo %s because' + self._repo.ui.warn(_('not removing repo %s because ' 'it has changes.\n' % self._path)) return self._repo.ui.note('removing subrepo %s\n' % self._path)