Wed, 08 Oct 2014 07:47:11 -0400 Jordi Gutiérrez Hermoso shelve: don't delete "." when rebase is a no-op (issue4398) stable
Wed, 08 Oct 2014 14:16:53 -0700 Martin von Zweigbergk merge: make error message consistent with other commands
Fri, 10 Oct 2014 10:34:52 -0400 Augie Fackler test-run-tests: add a test for detection of failure to start a server
Thu, 09 Oct 2014 17:00:29 -0700 Kyle Lippincott run-tests: more accurate/helpful message than "diff generation failed"
Thu, 09 Oct 2014 15:10:40 -0400 Augie Fackler run-tests: handle --jobs and --first gracefully
Mon, 06 Oct 2014 16:35:02 -0400 Jordi Gutiérrez Hermoso config: use the same hgrc for a cloned repo as for an uninitted repo
Wed, 08 Oct 2014 07:45:51 -0400 Jordi Gutiérrez Hermoso config: give a more detailed sample repo config
Tue, 07 Oct 2014 01:46:53 -0700 Pierre-Yves David smartset: drop infamous ascending, descending
Tue, 07 Oct 2014 01:41:14 -0700 Pierre-Yves David fullreposet: use `isascending` instead of `ascending` to recognise smartsets
Tue, 07 Oct 2014 01:41:26 -0700 Pierre-Yves David fullreposet: use `sort` to enforce the order
Tue, 07 Oct 2014 01:48:34 -0700 Pierre-Yves David revancestors: replace `descending` with `sort(reverse=False)`
Tue, 07 Oct 2014 01:41:02 -0700 Pierre-Yves David _descendants: replace `ascending()` with `sort()`
Tue, 07 Oct 2014 01:36:53 -0700 Pierre-Yves David _descendants: directly use smartset
Fri, 03 Oct 2014 03:29:55 -0500 Pierre-Yves David baseset: explicitly track order of the baseset
Fri, 03 Oct 2014 03:31:05 -0500 Pierre-Yves David baseset: fix isascending and isdescending
Fri, 03 Oct 2014 03:26:18 -0500 Pierre-Yves David baseset: prepare lazy ordering in __iter__
Fri, 03 Oct 2014 03:19:23 -0500 Pierre-Yves David baseset: implement a fastasc and fastdesc
Mon, 06 Oct 2014 11:03:30 -0700 Pierre-Yves David baseset: stop inheriting from built-in list class
Tue, 07 Oct 2014 00:38:14 -0700 Pierre-Yves David strip: stop calling `remove` on smartset
Tue, 07 Oct 2014 00:31:53 -0700 Pierre-Yves David rebase: transform the smartset to a list before comparing with a list
Tue, 07 Oct 2014 00:41:58 -0700 Pierre-Yves David merge.update: use `first` instead of direct indexing
Tue, 07 Oct 2014 00:33:47 -0700 Pierre-Yves David qimport: use `first` and `last` instead of direct indexing
Tue, 07 Oct 2014 00:16:59 -0700 Pierre-Yves David rebase: use `last` instead of direct indexing
Tue, 07 Oct 2014 00:14:53 -0700 Pierre-Yves David mq: use `last` instead of direct indexing
Tue, 07 Oct 2014 00:09:50 -0700 Pierre-Yves David repair: use `first` instead of direct indexing
Mon, 06 Oct 2014 23:45:07 -0700 Pierre-Yves David rangeset: use `first` and `last` instead of direct indexing
Mon, 06 Oct 2014 23:37:39 -0700 Pierre-Yves David revpair: use `first` and `last` instead of direct indexing
Mon, 06 Oct 2014 23:37:08 -0700 Pierre-Yves David revsingle: use `last` instead of direct indexing
Mon, 06 Oct 2014 11:43:32 -0700 Pierre-Yves David revset-limit: use boolean testing instead of `len(revs) < 1`
Tue, 07 Oct 2014 00:18:08 -0700 Pierre-Yves David filteredset: implement `first` and `last`
Mon, 06 Oct 2014 14:42:00 -0700 Pierre-Yves David baseset: implement `first` and `last` methods
Mon, 06 Oct 2014 12:52:36 -0700 Pierre-Yves David generatorset: implement first and last methods
Mon, 06 Oct 2014 11:57:59 -0700 Pierre-Yves David addset: implement first and last methods
Mon, 06 Oct 2014 11:54:53 -0700 Pierre-Yves David spanset: implement `first` and `last` methods
Mon, 06 Oct 2014 11:46:53 -0700 Pierre-Yves David smartset: add first and last methods
Tue, 07 Oct 2014 00:20:00 -0700 Pierre-Yves David getgraphlogrevs: remove user of baseset.append
Tue, 07 Oct 2014 00:04:16 -0700 Pierre-Yves David getlogrevs: remove user of baseset.append
Wed, 08 Oct 2014 00:55:09 -0700 Pierre-Yves David revset-last: remove user of baseset.append
Mon, 06 Oct 2014 10:57:01 -0700 Pierre-Yves David revset-limit: remove user of baseset.append
Tue, 07 Oct 2014 00:12:56 -0700 Pierre-Yves David mq: use `revs.sort()` to ensure the set is ascending
Mon, 06 Oct 2014 10:41:43 -0700 Pierre-Yves David baseset: use default value instead of [] when possible
Sat, 04 Oct 2014 06:17:18 -0700 Pierre-Yves David generatorset: implement isascending and isdescending
Fri, 03 Oct 2014 21:11:56 -0700 Pierre-Yves David generatorset: explicitly track iteration order
Fri, 03 Oct 2014 20:23:02 -0700 Pierre-Yves David addset: drop caching through generatorset
Fri, 03 Oct 2014 21:01:30 -0700 Pierre-Yves David generatorset: get list-based fast iterations after the generator is consumed
Fri, 03 Oct 2014 20:48:28 -0700 Pierre-Yves David generatorset: move iteration code into _iterator
Fri, 03 Oct 2014 20:43:48 -0700 Pierre-Yves David generatorset: stop using a base as the _genlist
Fri, 03 Oct 2014 20:12:02 -0700 Pierre-Yves David generatorset: drop the leading underscore in the class name
Fri, 03 Oct 2014 20:14:43 -0700 Pierre-Yves David generatorset: update the docstring now that it is a smartset
Fri, 03 Oct 2014 20:18:48 -0700 Pierre-Yves David addset: drop the leading underscore from the class name
Fri, 03 Oct 2014 20:17:12 -0700 Pierre-Yves David addset: this is a smartset, update the docstring
Thu, 09 Oct 2014 05:27:23 -0700 Pierre-Yves David addset: use the ascending argument in _iterordered
Wed, 08 Oct 2014 14:03:07 -0500 Matt Mackall rebase: add help examples
Wed, 08 Oct 2014 13:40:50 -0500 Matt Mackall rebase: attempt to clarify --base
Wed, 08 Oct 2014 12:59:11 -0400 Augie Fackler manifest: rearrange add() method and add comments for clarity
Wed, 08 Oct 2014 11:52:30 -0400 Augie Fackler manifest: simplify manifest.add() by making args required
Thu, 25 Sep 2014 14:13:31 -0400 Augie Fackler manifest: move manifest parsing to module-level
Wed, 24 Sep 2014 15:14:44 -0400 Augie Fackler revlog: move references to revlog.hash to inside the revlog class
Wed, 24 Sep 2014 15:10:52 -0400 Augie Fackler revlog: mark nullhash as module-private
Wed, 08 Oct 2014 20:51:01 +0900 Yuya Nishihara ui: disable echo back of prompt input if ui is set to non-tty purposely
(0) -10000 -3000 -1000 -300 -100 -60 +60 +100 +300 +1000 +3000 +10000 tip