Vadim Gelfer <vadim.gelfer@gmail.com> [Tue, 15 Aug 2006 09:37:58 -0700] rev 2914
merge with mpm.
Giorgos Keramidas <keramida@ceid.upatras.gr> [Tue, 15 Aug 2006 18:14:58 +0300] rev 2913
Tune a bit the extdiff toplevel comments/samples.
* Capitalize the first letter of all sentences
* Add an example for GNU diff(1) 'context diff' mode.
* Explain the requirement for separate cmd.xxx and opts.xxx
options in .hgrc, which hopefully will guard against users
trying to add:
[extdiff]
# Add a new Mercurial command called `cdiff', which calls
# GNU diff(1) in 'context diff' mode.
cmd.cdiff = diff -Nprc5
which fails for recent crew builds with:
$ hg cdiff .
making snapshot of 1 files from rev
07dc4a569f4e
making snapshot of 1 files from working dir
diff -Nprc5: not found
The correct way to do this is by separating the cmd.cdiff and
opts.cdiff parts like this:
[extdiff]
# Add a new Mercurial command called `cdiff', which calls
# GNU diff(1) in 'context diff' mode.
cmd.cdiff = diff
opts.cdiff = -Nprc5
so add it as a new example and explicitly describe it in the
extdiff comments.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 15 Aug 2006 16:04:47 +0200] rev 2912
Fixed test-extdiff.
diff-like tools usually return 1 if differences are found.
Currently the extdiff returns 256, but that's a different topic
(consolidating return code handling in hg).
Brendan Cully <brendan@kublai.com> [Tue, 15 Aug 2006 00:03:48 -0700] rev 2911
A fix for --prune.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 15 Aug 2006 11:47:17 +0200] rev 2910
Adjusted test to changed help output.
Thomas Arendsen Hein <thomas@intevation.de> [Tue, 15 Aug 2006 11:22:29 +0200] rev 2909
merge with jeffpc
Josef "Jeff" Sipek <jeffpc@josefsipek.net> [Tue, 15 Aug 2006 05:12:27 -0400] rev 2908
Use demandload in hgk
Brendan Cully <brendan@kublai.com> [Mon, 14 Aug 2006 22:48:03 -0700] rev 2907
Add diff --git option
Vadim Gelfer <vadim.gelfer@gmail.com> [Mon, 14 Aug 2006 15:51:35 -0700] rev 2906
extdiff: fix bugs. add test.
Brendan Cully <brendan@kublai.com> [Mon, 14 Aug 2006 11:41:08 -0700] rev 2905
Allow qdel to delete multiple patches.
Brendan Cully <brendan@kublai.com> [Mon, 14 Aug 2006 11:24:19 -0700] rev 2904
Replace qdel/qfold -f option with -k/--keep.
Brendan Cully <brendan@kublai.com> [Mon, 14 Aug 2006 11:10:21 -0700] rev 2903
Properly shell-quote arguments in extdiff
Brendan Cully <brendan@kublai.com> [Mon, 14 Aug 2006 11:07:15 -0700] rev 2902
Update extdiff for recent refactoring
Brendan Cully <brendan@kublai.com> [Mon, 14 Aug 2006 10:27:02 -0700] rev 2901
Test for log --prune.
Giorgos Keramidas <keramida@ceid.upatras.gr> [Mon, 14 Aug 2006 16:06:37 +0300] rev 2900
hgweb: partially revert
4ec58b157265
The change from self.repo.ui.diffopts() to ui.diffopts() causes a
traceback when the diff of a changeset should be displayed in the
web interface. Revert to self.repo.ui.diffopts() for now.
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 23:17:06 -0500] rev 2899
merge: consolidate dirstate updates
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 22:46:35 -0500] rev 2898
merge: use file size stored in revlog index
Add size method to filelog to handle nodes with renames
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 18:30:21 -0500] rev 2897
merge: move forgets to the apply stage
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 18:12:36 -0500] rev 2896
trivial bool() cleanup
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 16:28:00 -0500] rev 2895
filelog.cmp: return 0 for equality
spotted by Alexis Carvalho
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 16:27:19 -0500] rev 2894
merge: hoist some working manifest logic out of merge loop
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 16:12:51 -0500] rev 2893
merge: working manifest new/changed
To remove dependence on m1 during manifest comparison, we distinguish between
new and changed states in mw.
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 15:58:10 -0500] rev 2892
merge: factor out exec bit merge function
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 15:45:45 -0500] rev 2891
Use revlog hash comparison technique in merge
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 14:18:13 -0500] rev 2890
Move cmp bits from filelog to revlog
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 14:06:50 -0500] rev 2889
Move ui.sendmail to mail.connect/sendmail
Matt Mackall <mpm@selenic.com> [Tue, 15 Aug 2006 11:34:08 -0500] rev 2888
Move ui.diffopts to patch.diffopts where it belongs
Matt Mackall <mpm@selenic.com> [Mon, 14 Aug 2006 15:07:00 -0500] rev 2887
filelog: add hash-based comparisons
For status, rather than reconstruct full file versions from revlog for
comparison, compare hashes.
Matt Mackall <mpm@selenic.com> [Mon, 14 Aug 2006 14:42:15 -0500] rev 2886
Merge with crew
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 13 Aug 2006 17:03:33 -0700] rev 2885
cmdutil.matchpats: allow include/exclude to be optional.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 13 Aug 2006 17:03:03 -0700] rev 2884
add default values to arguments of walk etc.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 13 Aug 2006 16:57:45 -0700] rev 2883
move commands.addremove_lock to cmdutil.addremove
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 13 Aug 2006 16:11:22 -0700] rev 2882
move walk and matchpats from commands to cmdutil.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 13 Aug 2006 15:24:30 -0700] rev 2881
fix patch.patch.filterfiles.
now test-diff-subdir passes.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sun, 13 Aug 2006 15:03:48 -0700] rev 2880
make test-diff-subdir executable.
Giorgos Keramidas <keramida@ceid.upatras.gr> [Sun, 13 Aug 2006 23:00:18 +0300] rev 2879
tests: new test for hg diff of a subdirectory only
Giorgos Keramidas <keramida@ceid.upatras.gr> [Sun, 13 Aug 2006 18:35:24 +0300] rev 2878
Make clear that hg pull -r REV pulls "up to" a revision.
The existing message was a bit confusing, making the reader
believe that only the specific revision is pulled.
Giorgos Keramidas <keramida@ceid.upatras.gr> [Sun, 13 Aug 2006 20:21:13 +0300] rev 2877
Use cached hg-root-dir instead of rediscovering
by a second call to (hg-root). We have the path
we need already as the value of hg-root-dir.
Giorgos Keramidas <keramida@ceid.upatras.gr> [Sun, 13 Aug 2006 18:01:44 +0300] rev 2876
hgweb: repo.changes() is now called repo.status()
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 16:40:12 -0700] rev 2875
remove localrepository.changes.
use localrepository.status instead.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 16:13:27 -0700] rev 2874
refactor text diff/patch code.
rename commands.dodiff to patch.diff.
rename commands.doexport to patch.export.
move some functions from commands to new mercurial.cmdutil module.
turn list of diff options into mdiff.diffopts class.
patch.diff and patch.export now has clean api for call from 3rd party
python code.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 16:05:09 -0700] rev 2873
merge.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 16:04:49 -0700] rev 2872
manifest.execf is now a function.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 15:43:38 -0700] rev 2871
merge.
Brendan Cully <brendan@kublai.com> [Sat, 12 Aug 2006 15:01:46 -0700] rev 2870
grep: add --follow support.
Brendan Cully <brendan@kublai.com> [Sat, 12 Aug 2006 13:51:14 -0700] rev 2869
grep: display correct user/revision for --all in reverse.
Also handle multiple occurrences of the same line by storing
linestates in an array instead of a dict, and using difflib
to compute the difference between linestates.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 15:41:26 -0700] rev 2868
util: qualify name properly.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 14:15:23 -0700] rev 2867
mq: demandload more
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 13:16:48 -0700] rev 2866
commands.import: refactor patch parsing into patch.extract.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 12:47:18 -0700] rev 2865
merge git patch code.
Brendan Cully <brendan@kublai.com> [Fri, 11 Aug 2006 16:56:31 -0700] rev 2864
Tests for git import
Brendan Cully <brendan@kublai.com> [Fri, 11 Aug 2006 16:55:48 -0700] rev 2863
Remove debugging line
Brendan Cully <brendan@kublai.com> [Fri, 11 Aug 2006 16:30:24 -0700] rev 2862
Fix bad merge with crew
Brendan Cully <brendan@kublai.com> [Fri, 11 Aug 2006 15:50:16 -0700] rev 2861
Move patch-related code into its own module.
Brendan Cully <brendan@kublai.com> [Fri, 11 Aug 2006 15:50:07 -0700] rev 2860
Teach import to understand git diff extensions.
Vanilla patch chokes on git patches that include files that are copied
or renamed, then modified. So this code detects that case and rewrites
the patch if necessary.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 12:30:02 -0700] rev 2859
update copyrights.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 12:12:23 -0700] rev 2858
merge.
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 12 Aug 2006 08:53:23 -0300] rev 2857
Fix some bugs introduced during the manifest refactoring
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Sat, 12 Aug 2006 09:24:04 -0300] rev 2856
Fix "hg qnew -f foo" without -m
The refresh method assumes it has a string.
Vadim Gelfer <vadim.gelfer@gmail.com> [Sat, 12 Aug 2006 11:53:12 -0700] rev 2855
merge with mpm.
Vadim Gelfer <vadim.gelfer@gmail.com> [Fri, 11 Aug 2006 14:50:41 -0700] rev 2854
import: get lock and wlock one time
this makes import of many patches 6x faster in kernel repo.
Thomas Arendsen Hein <thomas@intevation.de> [Fri, 11 Aug 2006 09:11:54 +0200] rev 2853
Adjusted documentation for hgrc's "[smtp] host" for change in
9f745d3675d4.
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 10 Aug 2006 17:37:57 -0700] rev 2852
fix test output
Vadim Gelfer <vadim.gelfer@gmail.com> [Thu, 10 Aug 2006 17:33:08 -0700] rev 2851
mq: only add mq attribute to local repo