hgext/transplant.py
Fri, 02 Dec 2022 06:31:19 +0100 Pierre-Yves David path: pass `path` to `peer` in `hg transplant`
Mon, 21 Feb 2022 13:08:28 -0700 Gregory Szorc py3: use class X: instead of class X(object):
Tue, 01 Mar 2022 20:52:32 -0800 Gregory Szorc py3: replace pycompat.itervalues(x) with x.values()
Thu, 03 Mar 2022 17:34:00 +0100 Gregory Szorc py2: remove simple from __future__ statements
Tue, 28 Sep 2021 08:47:11 -0700 Martin von Zweigbergk errors: raise InputError on bad revset to revrange() iff provided by the user
Mon, 29 Mar 2021 01:52:06 +0200 Joerg Sonnenberger node: replace nullid and friends with nodeconstants class
Fri, 16 Apr 2021 10:46:56 +0200 Pierre-Yves David transplant: use `get_unique_pull_path`
Tue, 01 Dec 2020 21:54:46 +0100 Joerg Sonnenberger node: import symbols explicitly
Fri, 27 Nov 2020 17:03:29 -0500 Augie Fackler formating: upgrade to black 20.8b1
Mon, 12 Oct 2020 12:44:18 -0700 Martin von Zweigbergk errors: introduce StateError and use it from commands and cmdutil
Mon, 21 Sep 2020 09:57:29 -0700 Martin von Zweigbergk merge: add a higher-level update() for the common `hg update` use case
Mon, 21 Sep 2020 11:12:58 -0700 Martin von Zweigbergk merge: make low-level update() private (API)
Mon, 21 Sep 2020 10:09:39 -0700 Martin von Zweigbergk merge: use merge.clean_update() when applicable
Fri, 06 Mar 2020 13:27:41 -0500 Augie Fackler cleanup: run pyupgrade on our source tree to clean up varying things
Mon, 27 Jan 2020 09:14:19 -0800 Martin von Zweigbergk cmdutil: change check_incompatible_arguments() *arg to single iterable
Fri, 13 Dec 2019 14:12:14 -0800 Martin von Zweigbergk transplant: use check_incompatible_arguments()
Thu, 14 Nov 2019 15:25:57 -0500 Augie Fackler transplant: use field names instead of field numbers on scmutil.status
Fri, 08 Nov 2019 11:19:20 -0800 Augie Fackler cleanup: remove pointless r-prefixes on single-quoted strings
Tue, 08 Oct 2019 15:06:18 -0700 Martin von Zweigbergk cleanup: join string literals that are already on one line
Sun, 06 Oct 2019 17:59:15 -0400 Gregory Szorc py3: define and use pycompat.itervalues()
Sun, 06 Oct 2019 13:28:56 -0400 Gregory Szorc py3: manually import pycompat.open into files that need it
Sun, 06 Oct 2019 09:48:39 -0400 Augie Fackler formatting: byteify all mercurial/ and hgext/ string literals
Sun, 06 Oct 2019 09:45:02 -0400 Augie Fackler formatting: blacken the codebase
Sat, 17 Aug 2019 15:43:41 +0900 Yuya Nishihara transplant: unnest --stop case
Fri, 26 Jul 2019 01:19:43 +0530 Taapas Agrawal transplant: added support for --stop flag
Wed, 24 Jul 2019 18:32:36 +0530 Taapas Agrawal continue: added support for transplant
Sun, 09 Jun 2019 02:12:58 +0530 Taapas Agrawal statecheck: added support for STATES
Sun, 09 Jun 2019 00:43:36 +0530 Taapas Agrawal state: created new class statecheck to handle unfinishedstates
Sat, 08 Jun 2019 23:43:53 +0530 Taapas Agrawal states: moved cmdutil.unfinishedstates to state.py
Sat, 09 Feb 2019 22:50:53 -0800 Martin von Zweigbergk match: delete unused root and cwd arguments from {always,never,exact}() (API)
Fri, 25 Jan 2019 23:22:23 -0800 Martin von Zweigbergk cleanup: use p1() instead of parents() when we only need the first parent
Thu, 24 Jan 2019 16:16:10 -0800 Martin von Zweigbergk transplant: use bailifchanged() instead of reimplementing it
Thu, 09 Feb 2017 09:17:40 -0800 Martin von Zweigbergk update: clarify update() call sites by specifying argument names
Sat, 13 Oct 2018 02:17:41 -0700 rdamazio help: assigning categories to existing commands
Tue, 18 Sep 2018 16:47:09 -0700 Gregory Szorc global: replace most uses of RevlogError with StorageError (API)
Mon, 18 Jun 2018 16:06:28 +0530 Pulkit Goyal py3: slice over bytes to prevent getting ascii values
Mon, 18 Jun 2018 16:06:01 +0530 Pulkit Goyal py3: use pycompat.maplist() instead of map() in hgext/transplant.py
Sat, 26 May 2018 12:14:04 +0900 Yuya Nishihara py3: wrap tempfile.mkstemp() to use bytes path
Sun, 01 Apr 2018 23:19:37 -0700 Martin von Zweigbergk transplant: avoid repo.lookup() for converting revnum to nodeid
Sat, 24 Mar 2018 15:10:51 +0900 Yuya Nishihara procutil: bulk-replace function calls to point to new module
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Sat, 10 Mar 2018 15:57:16 +0900 Yuya Nishihara py3: use r'' instead of sysstr('') to get around code transformer
Sun, 25 Feb 2018 13:40:46 +0900 Yuya Nishihara templatekw: switch non-showlist template keywords to new API
Wed, 14 Feb 2018 17:43:33 +0530 Pulkit Goyal py3: use util.forcebytestr instead of str for converting errors to bytes
Wed, 14 Feb 2018 17:42:14 +0530 Pulkit Goyal py3: use pycompat.{bytes|str}kwargs in transplant.py
Wed, 14 Feb 2018 17:41:27 +0530 Pulkit Goyal py3: replace file() with open() in transplant.py
Wed, 14 Feb 2018 17:40:51 +0530 Pulkit Goyal py3: use "%d" for converting int to bytes in transplant.py
Wed, 14 Feb 2018 17:39:56 +0530 Pulkit Goyal py3: open files in bytes mode in transplant.py
Sun, 21 Jan 2018 13:03:03 +0900 Yuya Nishihara cmdutil: drop aliases for logcmdutil functions (API)
Fri, 30 Jun 2017 03:44:30 +0200 Boris Feld configitems: register the 'transplant.log' config
Fri, 30 Jun 2017 03:44:29 +0200 Boris Feld configitems: register the 'transplant.filter' config
Sat, 09 Jan 2016 23:07:20 +0900 Yuya Nishihara registrar: move cmdutil.command to registrar module (API)
Wed, 08 Mar 2017 16:52:49 -0800 Pierre-Yves David transplant: directly use repo.vfs.join
Thu, 02 Mar 2017 13:31:39 +0100 Pierre-Yves David vfs: use 'vfs' module directly in 'hgext.transplant'
Thu, 02 Mar 2017 03:52:36 +0100 Pierre-Yves David vfs: replace 'scmutil.opener' usage with 'scmutil.vfs'
Mon, 06 Mar 2017 03:27:41 -0800 Simon Farnsworth transplant: set a blockedtag when invoking external filter
Sun, 19 Feb 2017 18:16:09 +0900 Yuya Nishihara revset: import set classes directly from smartset module
Mon, 13 Feb 2017 22:15:28 +0530 Pulkit Goyal py3: convert the mode argument of os.fdopen to unicodes (2 of 2)
Tue, 23 Aug 2016 11:26:08 -0400 Augie Fackler extensions: change magic "shipped with hg" string
Sun, 13 Mar 2016 05:17:06 +0900 FUJIWARA Katsunori hgext: use templatekeyword to mark a function as template keyword
Tue, 01 Mar 2016 04:53:43 +0000 timeless transplant: use absolute_import
Fri, 11 Mar 2016 16:07:22 +0000 timeless transplant: switch to using nodemod for hex+short
Tue, 08 Mar 2016 23:04:53 +0900 FUJIWARA Katsunori revset: replace extpredicate by revsetpredicate of registrar
Fri, 15 Jan 2016 13:14:47 -0800 Bryan O'Sullivan with: use context manager for wlock in transplant
Wed, 06 Jan 2016 04:59:46 +0000 timeless transplant: specify the right file and path for unfinishedstates
Wed, 06 Jan 2016 04:59:21 +0000 timeless transplant: only use checkunfinished if not continue
Tue, 05 Jan 2016 22:46:04 +0000 timeless transplant: correct language to use working directory
Tue, 29 Dec 2015 23:58:30 +0900 FUJIWARA Katsunori revset: use delayregistrar to register predicate in extension easily
Mon, 14 Dec 2015 18:54:03 -0500 Augie Fackler merge: have merge.update use a matcher instead of partial fn
Mon, 30 Nov 2015 19:28:26 +0000 timeless transplant: use Oxford comma
Wed, 09 Dec 2015 08:28:53 +0900 FUJIWARA Katsunori transplant: widen wlock scope of transplant for consitency while processing
Thu, 08 Oct 2015 12:55:45 -0700 Pierre-Yves David error: get Abort from 'error' instead of 'util'
Fri, 09 Oct 2015 03:53:46 +0900 FUJIWARA Katsunori dirstate: remove meaningless dirstateguard
Thu, 24 Sep 2015 00:52:21 -0700 Pierre-Yves David transplant: remove a mutable default argument
Thu, 30 Jul 2015 06:22:09 +0900 FUJIWARA Katsunori transplant: restore dirstate correctly at unexpected failure stable
Thu, 25 Jun 2015 17:42:09 -0500 Matt Mackall transplant: mark some undocumented options deprecated
Wed, 01 Jul 2015 16:33:31 -0500 Matt Mackall merge with stable
Mon, 29 Jun 2015 19:09:42 -0700 Pierre-Yves David transplant: only pull the transplanted revision (issue4692) stable 3.4.2
Tue, 23 Jun 2015 22:20:08 -0700 Gregory Szorc global: mass rewrite to use modern exception syntax
Tue, 28 Apr 2015 16:44:37 -0400 Augie Fackler extensions: document that `testedwith = 'internal'` is special
Tue, 17 Mar 2015 21:53:17 +0900 Yuya Nishihara commands: say "working directory" in full spelling
Thu, 08 Jan 2015 21:36:12 -0800 Pierre-Yves David transplant: properly skip empty changeset (issue4423)
Tue, 18 Nov 2014 21:49:05 -0800 Siddharth Agarwal transplant: don't honor whitespace and format-changing diffopts
Sat, 08 Nov 2014 13:06:22 +0900 Yuya Nishihara util.system: use ui.system() in place of optional ui.fout parameter
Fri, 03 Oct 2014 11:21:52 -0500 Pierre-Yves David transplant: use exchange.pull
Sat, 16 Aug 2014 10:43:59 +0900 FUJIWARA Katsunori transplant: change "editform" to distinguish merge commits from others
Sat, 02 Aug 2014 21:46:26 +0900 FUJIWARA Katsunori transplant: pass 'editform' argument to 'cmdutil.getcommiteditor'
Sun, 11 May 2014 00:49:35 +0900 FUJIWARA Katsunori transplant: use "getcommiteditor()" instead of explicit editor choice
Mon, 07 Apr 2014 23:17:51 +0200 Mads Kiilerich transplant: use context ancestor instead of changelog ancestor
Tue, 11 Feb 2014 09:00:38 -0800 Lucas Moscovicz hgext: updated extensions to return a baseset when adding symbols
Mon, 02 Dec 2013 00:50:30 +0900 FUJIWARA Katsunori transplant: use "ui.extractchoices()" to show the list of available responses
Mon, 02 Dec 2013 00:50:30 +0900 FUJIWARA Katsunori transplant: use "ui.promptchoice()" for interactive transplant
Sat, 16 Nov 2013 23:14:20 +0900 FUJIWARA Katsunori transplant: use peer of source repository as "remote" for "repo.pull()"
Thu, 24 Oct 2013 01:49:56 +0800 Mads Kiilerich spelling: random spell checker fixes stable
Thu, 25 Jul 2013 02:17:52 -0500 Matt Mackall checkunfinished: accommodate histedit quirk stable
Wed, 24 Jul 2013 23:51:44 -0500 Matt Mackall transplant: add checkunfinished (issue3955) stable
Tue, 16 Apr 2013 19:31:59 +0200 Mads Kiilerich transplant: use set for prune lookup
Tue, 16 Apr 2013 19:20:23 +0200 Mads Kiilerich transplant: improve documentation
Tue, 16 Apr 2013 19:18:38 +0200 Mads Kiilerich transplant: clarify what --branch do - it has nothing to do with branches
Fri, 12 Apr 2013 18:44:22 -0700 Bryan O'Sullivan transplant: pass source through to recover
Fri, 12 Apr 2013 17:18:52 -0700 Bryan O'Sullivan repoview: remove unreachable code
Mon, 17 Dec 2012 15:08:06 -0800 Siddharth Agarwal transplant: replace incancestors uses with ancestors
Sat, 28 Jul 2012 23:28:36 +0200 Simon Heimberg peer: subrepo isolation, pass repo instead of repo.ui to hg.peer stable
Wed, 01 Aug 2012 14:08:19 +0200 Patrick Mezard transplant: fix emptied changeset message stable
Tue, 31 Jul 2012 17:39:32 +0200 Patrick Mezard transplant: handle non-empty patches doing nothing (issue2806) stable
Tue, 31 Jul 2012 03:30:42 +0200 Mads Kiilerich check-code: indent 4 spaces in py files stable
Fri, 13 Jul 2012 21:46:53 +0200 Sune Foldager peer: introduce peer methods to prepare for peer classes
Fri, 08 Jun 2012 14:21:32 -0700 Joshua Redstone transplant: convert applied() algorithm from nodes to revs
Fri, 08 Jun 2012 08:39:44 -0700 Joshua Redstone revlog: remove reachable and switch call sites to ancestors
Wed, 20 Jun 2012 16:49:04 +0200 Thomas Arendsen Hein consistency: use REV instead of REVISION
Tue, 15 May 2012 14:37:49 -0500 Augie Fackler hgext: mark all first-party extensions as such
Fri, 11 May 2012 17:26:58 +0200 Levi Bard transplant: manually transplant pullable changesets with --log
Sun, 29 Apr 2012 22:25:55 +0200 Patrick Mezard localrepo: add setparents() to adjust dirstate copies (issue3407) stable
Sun, 22 Apr 2012 16:40:38 +0200 Patrick Mezard transplant: do not rollback on patching error (issue3379) stable
Mon, 16 Apr 2012 22:41:03 -0700 Steven Stallion transplant: remove extraneous whitespace
Tue, 10 Apr 2012 23:24:12 -0700 Steven Stallion transplant: permit merge changesets via --parent
Mon, 10 Oct 2011 23:07:09 -0500 Matt Mackall transplant: add --edit option
Tue, 04 Oct 2011 19:43:45 -0400 Greg Ward transplant: wrap a transaction around the whole command
Fri, 24 Jun 2011 19:27:53 +0300 Idan Kamara transplant: use ui out descriptor when calling util.system stable
Sat, 11 Jun 2011 14:14:11 +0200 Patrick Mezard patch: turn patch() touched files dict into a set
Fri, 10 Jun 2011 11:43:38 -0500 Matt Mackall hg: change various repository() users to use peer() where appropriate
Sat, 21 May 2011 15:01:28 -0500 Matt Mackall revlog: stop exporting node.short
Thu, 19 May 2011 22:44:01 +0200 Patrick Mezard patch: remove patch.patch() cwd argument
Fri, 13 May 2011 14:06:28 -0500 Matt Mackall scmutil: move revsingle/pair/range from cmdutil
Thu, 12 May 2011 17:50:07 +0200 Adrian Buehlmann transplant: use cmdutil.command decorator
Sun, 08 May 2011 17:48:31 +0200 Patrick Mezard patch: make patch()/internalpatch() always update the dirstate
Sun, 08 May 2011 17:48:30 +0200 Patrick Mezard patch: move updatedir() from cmdutil into patch
Fri, 06 May 2011 11:51:18 -0500 Matt Mackall merge with stable
Fri, 06 May 2011 16:00:48 +0300 Idan Kamara transplant: remove unneeded loop over repo in revset
Fri, 06 May 2011 15:37:38 +0300 Idan Kamara transplant: fix revset doc stable
Mon, 02 May 2011 10:11:18 +0200 Dan Villiom Podlaski Christiansen prevent transient leaks of file handle by using new helper functions
Mon, 02 May 2011 12:36:23 +0200 Peter Arrenbrecht bundlerepo: fix and improve getremotechanges
Sat, 30 Apr 2011 17:21:37 +0200 Peter Arrenbrecht discovery: drop findoutgoing and simplify findcommonincoming's api
Wed, 20 Apr 2011 19:54:57 +0200 Adrian Buehlmann move opener from util to scmutil
Mon, 04 Apr 2011 16:21:59 -0500 Matt Mackall misc: replace .parents()[0] with p1()
Mon, 28 Mar 2011 21:36:29 -0700 Brendan Cully Fix transplant error message to correspond with test
Mon, 28 Mar 2011 21:17:32 +0100 Luke Plant transplant: fix crash if filter script munges log file
Wed, 23 Mar 2011 16:06:55 +0100 Peter Arrenbrecht discovery: avoid discovery when local graph is a subset of remote
Sat, 19 Mar 2011 19:50:55 +0100 Patrick Mezard i18n: register new template keywords for translation
Thu, 17 Mar 2011 22:17:27 +0100 Patrick Mezard transplant: add "transplanted" keyword
Sun, 13 Mar 2011 13:05:16 +0100 Martin Geisler merge with stable
Sun, 13 Mar 2011 12:44:35 +0100 Martin Geisler transplant: avoid the word "rebase" when we mean "transplant" stable
Sun, 13 Mar 2011 12:43:52 +0100 Martin Geisler transplant: explain that changesets are copied, not moved stable
Fri, 11 Mar 2011 15:48:44 +0000 Luke Plant transplant: added 'HGREVISION' variable to the environment passed to the 'filter' command
Mon, 22 Nov 2010 18:15:58 +0100 Martin Geisler code style: prefer 'is' and 'is not' tests with singletons
Sun, 24 Oct 2010 12:52:37 +0200 Patrick Mezard hggettext: handle i18nfunctions declaration for docstrings translations stable
Sat, 23 Oct 2010 19:22:42 +0200 Patrick Mezard Fix and unify transplant and bookmarks revsets doc registration stable
Thu, 14 Oct 2010 22:41:43 +0200 Nicolas Dumazet bundlerepo: unify common code into a new getremotechanges
Tue, 28 Sep 2010 19:36:05 +0200 Juan Pablo Aroztegi transplant: add the transplanted revset predicate
Sat, 18 Sep 2010 08:30:11 +0200 Peter Arrenbrecht transplant: fix var name conflict introduced by 2912881c2a98
Mon, 20 Sep 2010 16:14:05 -0500 Matt Mackall bundlerepo: restore close() method
Fri, 17 Sep 2010 19:03:13 -0500 Matt Mackall bundlerepo: drop unused close() method
Thu, 16 Sep 2010 16:00:29 +0200 Peter Arrenbrecht transplant: maintain list of transplants in dict
Mon, 13 Sep 2010 13:08:09 +0200 Martin Geisler patch: break import cycle with cmdutil
Sun, 29 Aug 2010 22:37:58 +0200 Martin Geisler Lowercase error messages stable
Sun, 18 Jul 2010 21:29:29 -0400 Greg Ward transplant: crash if repo.commit() finds nothing to commit stable
Sat, 19 Jun 2010 12:51:57 +0200 Georg Brandl transplant: when reading journal, treat only lines starting with "# " special like patch.extract() does
Sun, 06 Jun 2010 17:25:00 +0900 FUJIWARA Katsunori help: show value requirement and multiple occurrence of options
Mon, 07 Jun 2010 18:35:54 +0200 Dirkjan Ochtman move discovery methods from localrepo into new discovery module
Tue, 18 May 2010 16:31:10 +0200 Martin Geisler Use our custom hg reStructuredText role some more
Fri, 19 Feb 2010 02:23:38 +0100 Benoit Boissinot i18n: mark more strings for translation stable
Mon, 08 Feb 2010 15:36:34 +0100 Benoit Boissinot fix coding style (reported by pylint)
Mon, 25 Jan 2010 00:05:27 -0600 Matt Mackall many, many trivial check-code fixups
Tue, 19 Jan 2010 22:45:09 -0600 Matt Mackall Merge with stable
Tue, 19 Jan 2010 22:20:08 -0600 Matt Mackall Update license to GPLv2+ stable
Mon, 28 Dec 2009 17:55:52 +0100 Robert Bachmann Added support for templatevar "footer" to cmdutil.py
Thu, 03 Dec 2009 11:06:44 +0100 Sune Foldager transplant: fix small bug when a patch fails while using --filter stable
Thu, 10 Sep 2009 10:31:12 +0200 Martin Geisler Merge with crew-stable
Thu, 10 Sep 2009 01:56:25 +0200 Mads Kiilerich transplant: Add trailing LF in tmp file for filtering
Sun, 26 Jul 2009 02:02:10 +0200 Martin Geisler transplant: wrap docstrings at 70 characters
Wed, 22 Jul 2009 23:26:27 +0200 Martin Geisler transplant: better reST formatting
Wed, 22 Jul 2009 22:56:45 +0200 Martin Geisler merge with crew-stable
Wed, 22 Jul 2009 22:50:34 +0200 Martin Geisler do not translate commit messages
Tue, 07 Jul 2009 23:54:42 +0200 Martin Geisler transplant: wrapped docstrings at 78 characters
Wed, 24 Jun 2009 13:42:02 +0200 Dirkjan Ochtman extensions: change descriptions for extensions providing a few commands
Mon, 22 Jun 2009 15:48:08 +0200 Cédric Duval extensions: improve the consistency of synopses
Mon, 15 Jun 2009 00:03:27 +0200 Patrick Mezard Make mq, record and transplant honor patch.eol
Wed, 10 Jun 2009 15:10:21 +0200 Benoit Boissinot use new style classes
Mon, 01 Jun 2009 14:11:32 -0500 Matt Mackall commit: drop the now-unused files parameter
Mon, 01 Jun 2009 13:51:21 -0500 Matt Mackall transplant: use match object rather than files for commit
Sun, 24 May 2009 22:37:20 +0200 Martin Geisler use ui instead of repo.ui when the former is in scope
Sun, 26 Apr 2009 01:08:54 +0200 Martin Geisler updated license to be explicit about GPL version 2
Sun, 26 Apr 2009 16:50:44 -0500 Matt Mackall replace util.sort with sorted built-in
Sun, 26 Apr 2009 14:20:41 -0700 Brendan Cully transplant: forbid transplant to nonempty repositories with no working directory.
Fri, 24 Apr 2009 17:00:18 -0500 Jacob Lee transplant: remove the restriction that the destination be nonempty.
Wed, 22 Apr 2009 02:01:22 +0200 Ronny Pfannschmidt switch lock releasing in the extensions from gc to explicit
Sat, 18 Apr 2009 14:40:21 +0200 Martin Geisler help texts: write command line switches as -a/--abc
Sat, 04 Apr 2009 23:19:29 +0200 Martin Geisler transplant: word-wrap help texts at 70 characters
Mon, 23 Mar 2009 13:13:02 +0100 Peter Arrenbrecht cleanup: drop variables for unused return values
Mon, 09 Feb 2009 00:14:07 +0100 Martin Geisler transplant: wrapped long lines
Sun, 11 Jan 2009 22:48:28 -0600 Matt Mackall errors: move revlog errors
Tue, 13 Jan 2009 13:43:42 +0100 Dirkjan Ochtman transplant: move docstrings before imports (see issue1466)
Tue, 25 Nov 2008 23:26:33 +0100 Benoit Boissinot protocol: use changegroupsubset() if possible (issue1389)
Fri, 14 Nov 2008 13:59:25 +0100 Dirkjan Ochtman cmdutil: use change contexts for cset-printer and cset-templater
Mon, 03 Nov 2008 16:48:23 +0100 Dirkjan Ochtman patch: turn patch.diff() into a generator
Tue, 28 Oct 2008 19:25:26 +0100 Benoit Boissinot remove unused variables
Sun, 31 Aug 2008 16:12:03 +0200 Martin Geisler i18n: mark strings for translation in transplant extension
Fri, 27 Jun 2008 18:28:45 -0500 Matt Mackall util: add sort helper
Thu, 06 Mar 2008 22:23:41 +0100 Joel Rosdahl Remove unused imports
Sat, 21 Jul 2007 16:02:10 -0500 Matt Mackall Make repo locks recursive, eliminate all passing of lock/wlock
Sat, 21 Jul 2007 16:02:10 -0500 Matt Mackall Use try/finally pattern to cleanup locks and transactions
Fri, 22 Jun 2007 19:43:29 -0300 Alexis S. L. Carvalho transplant: fix locking order
Tue, 19 Jun 2007 08:51:34 +0200 Thomas Arendsen Hein Updated copyright notices and add "and others" to "hg version"
Wed, 06 Jun 2007 20:22:52 +0200 Thomas Arendsen Hein Removed trailing whitespace and tabs from python files
Tue, 20 Mar 2007 13:13:39 -0700 Brendan Cully transplant: fix ignoring empty changesets (eg after filter)
Sun, 11 Feb 2007 18:37:23 +0100 Patrick Mezard transplant: remote bundle source was not closed before deleting the fetched bundle.
Tue, 30 Jan 2007 11:39:47 -0800 Brendan Cully transplant: update to current writebundle API
Tue, 16 Jan 2007 12:51:02 -0800 Brendan Cully Update transplant's merge.update call
Tue, 26 Dec 2006 15:42:40 +0100 Thomas Arendsen Hein Corrected synopsis for transplant.
Thu, 14 Dec 2006 20:25:19 -0600 Matt Mackall Simplify i18n imports
Wed, 13 Dec 2006 13:27:09 -0600 Matt Mackall Replace demandload with new demandimport
Fri, 08 Dec 2006 12:52:17 -0800 Brendan Cully transplant: don't add extra newlines to changelog entry in filter
Fri, 01 Dec 2006 15:43:48 -0800 Brendan Cully transplant: split filter args into changelog entry and patch
Fri, 01 Dec 2006 15:00:33 -0800 Brendan Cully transplant: log source node when recovering too.
Fri, 01 Dec 2006 14:30:17 -0800 Brendan Cully transplant: clobber old series when transplant fails
Fri, 01 Dec 2006 13:50:09 -0800 Brendan Cully transplant: "filtering %s\n"
Thu, 30 Nov 2006 13:51:58 -0800 Brendan Cully transplant: recover added/removed files after failed application
Thu, 30 Nov 2006 11:32:40 -0800 Brendan Cully transplant: preserve filter changes in --continue log
Thu, 30 Nov 2006 11:09:25 -0800 Brendan Cully transplant: fix --continue; add --continue test
Wed, 29 Nov 2006 22:34:22 -0800 Brendan Cully transplant: show_changeset moved to cmdutil
Mon, 27 Nov 2006 15:13:01 -0800 Brendan Cully Add transplant extension
less more (0) tip