Mon, 21 Jul 2008 13:26:42 +0200 context: get rid of unused changectx.filectxs() method
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 21 Jul 2008 13:26:42 +0200] rev 6846
context: get rid of unused changectx.filectxs() method
Mon, 21 Jul 2008 13:22:11 +0200 context: fix workingctx's __contains__ method
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 21 Jul 2008 13:22:11 +0200] rev 6845
context: fix workingctx's __contains__ method
Mon, 21 Jul 2008 13:17:51 +0200 merge: use correct branch name for counting heads
Dirkjan Ochtman <dirkjan@ochtman.nl> [Mon, 21 Jul 2008 13:17:51 +0200] rev 6844
merge: use correct branch name for counting heads
Fri, 25 Jul 2008 13:27:06 +0200 merge with crew-stable
Dirkjan Ochtman <dirkjan@ochtman.nl> [Fri, 25 Jul 2008 13:27:06 +0200] rev 6843
merge with crew-stable
Fri, 25 Jul 2008 13:26:16 +0200 add note about updating one file to update help
Dirkjan Ochtman <dirkjan@ochtman.nl> [Fri, 25 Jul 2008 13:26:16 +0200] rev 6842
add note about updating one file to update help
Fri, 25 Jul 2008 13:23:59 +0200 churn: fix documentation for churn options
Dirkjan Ochtman <dirkjan@ochtman.nl> [Fri, 25 Jul 2008 13:23:59 +0200] rev 6841
churn: fix documentation for churn options
Thu, 24 Jul 2008 16:32:52 +0200 introduce store classes
Adrian Buehlmann <adrian@cadifra.com> [Thu, 24 Jul 2008 16:32:52 +0200] rev 6840
introduce store classes move store walking from streamclone.py into store.py
Thu, 24 Jul 2008 16:32:51 +0200 move filename encoding functions from util.py to new store.py
Adrian Buehlmann <adrian@cadifra.com> [Thu, 24 Jul 2008 16:32:51 +0200] rev 6839
move filename encoding functions from util.py to new store.py
Thu, 24 Jul 2008 22:46:45 +0200 Merge with crew-stable
Patrick Mezard <pmezard@gmail.com> [Thu, 24 Jul 2008 22:46:45 +0200] rev 6838
Merge with crew-stable
Thu, 24 Jul 2008 22:44:15 +0200 convert: use git executable only, with subcommands
Dhruva Krishnamurthy <dhruvakm@gmail.com> [Thu, 24 Jul 2008 22:44:15 +0200] rev 6837
convert: use git executable only, with subcommands The latest GIT has some changes in the way it is installed. Only the 'git' executable need to be in the path. All other commands are treated as sub commands of 'git'.
Wed, 23 Jul 2008 16:14:45 +0200 merge with -stable
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 23 Jul 2008 16:14:45 +0200] rev 6836
merge with -stable
Wed, 23 Jul 2008 16:08:20 +0200 make mq and tags hardlink safe
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 23 Jul 2008 16:08:20 +0200] rev 6835
make mq and tags hardlink safe The code didn't check for modes like "r+" or "rb+". Many thanks to agriffis for noticing it.
Tue, 22 Jul 2008 13:03:31 -0500 dirstate.walk: speed up calling match function
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:31 -0500] rev 6834
dirstate.walk: speed up calling match function
Tue, 22 Jul 2008 13:03:29 -0500 dirstate.walk: reduce sorting in step 3
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:29 -0500] rev 6833
dirstate.walk: reduce sorting in step 3
Tue, 22 Jul 2008 13:03:25 -0500 dirstate.walk: inline imatch
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:25 -0500] rev 6832
dirstate.walk: inline imatch This lets us carefully avoid calling ignore and match where possible in the fast path.
Tue, 22 Jul 2008 13:03:24 -0500 dirstate.walk: more cleanups
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:24 -0500] rev 6831
dirstate.walk: more cleanups - group internal functions - simplify imatch - rename _join to join - use nf in step 3 - use .hg in results
Tue, 22 Jul 2008 13:03:23 -0500 dirstate.walk: fold in _supported
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:23 -0500] rev 6830
dirstate.walk: fold in _supported - inline tests for regular or link files - simplify bad type reporting
Tue, 22 Jul 2008 13:03:21 -0500 dirstate.walk: build a dict rather than yield
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:21 -0500] rev 6829
dirstate.walk: build a dict rather than yield Since we're already building a seen dict, we might as well put our results in it to go slightly faster.
Tue, 22 Jul 2008 13:03:20 -0500 dirstate.walk: minor cleanups
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:20 -0500] rev 6828
dirstate.walk: minor cleanups - add dirkind - simplify loop structure - avoid pconvert and join on directory entries (big speed bump) - remove redundant seen set in step 3
Tue, 22 Jul 2008 13:03:19 -0500 dirstate.walk: push sorting up
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:19 -0500] rev 6827
dirstate.walk: push sorting up
Tue, 22 Jul 2008 13:03:18 -0500 dirstate.walk: pull directory scanning into top-level loop
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:18 -0500] rev 6826
dirstate.walk: pull directory scanning into top-level loop
Tue, 22 Jul 2008 13:03:17 -0500 dirstate.walk: unify match.dir logic
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:17 -0500] rev 6825
dirstate.walk: unify match.dir logic
Tue, 22 Jul 2008 13:03:16 -0500 dirstate.walk: simplify .hg scan bisect logic
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:16 -0500] rev 6824
dirstate.walk: simplify .hg scan bisect logic
Tue, 22 Jul 2008 13:03:15 -0500 dirstate.walk: track normalized directory names
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:15 -0500] rev 6823
dirstate.walk: track normalized directory names
Tue, 22 Jul 2008 13:03:14 -0500 dirstate: simplify normalize logic
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:14 -0500] rev 6822
dirstate: simplify normalize logic
Tue, 22 Jul 2008 13:03:13 -0500 dirstate.walk: change names for dc and known
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:13 -0500] rev 6821
dirstate.walk: change names for dc and known known -> seen dc -> dmap
Tue, 22 Jul 2008 13:03:10 -0500 dirstate.walk: fold findfiles into main walk loop
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:10 -0500] rev 6820
dirstate.walk: fold findfiles into main walk loop
Tue, 22 Jul 2008 13:03:08 -0500 dirstate.walk: eliminate filter function
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:03:08 -0500] rev 6819
dirstate.walk: eliminate filter function - remove _filter and delete original - improve some filtering logic
Tue, 22 Jul 2008 13:02:36 -0500 dirstate.walk: eliminate src from yield
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:02:36 -0500] rev 6818
dirstate.walk: eliminate src from yield - restructure 'step two' to stat unseen files - remove extra stat logic in status - remove redundant src
Tue, 22 Jul 2008 13:00:22 -0500 minor status fixups
Matt Mackall <mpm@selenic.com> [Tue, 22 Jul 2008 13:00:22 -0500] rev 6817
minor status fixups
(0) -3000 -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 +3000 +10000 +30000 tip