Thu, 23 Aug 2007 01:48:29 -0300 merge: forcefully mark files that we get from the second parent as dirty
Alexis S. L. Carvalho <alexis@cecm.usp.br> [Thu, 23 Aug 2007 01:48:29 -0300] rev 5210
merge: forcefully mark files that we get from the second parent as dirty After a hg merge, we want to include in the commit all the files that we got from the second parent, so that we have the correct file-level history. To make them visible to hg commit, we try to mark them as dirty. Unfortunately, right now we can't really mark them as dirty[1] - the best we can do is to mark them as needing a full comparison of their contents, but they will still be considered clean if they happen to be identical to the version in the first parent. This changeset extends the dirstate format in a compatible way, so that we can mark a file as dirty: Right now we use a negative file size to indicate we don't have valid stat data for this entry. In practice, this size is always -1. This patch uses -2 to indicate that the entry is dirty. Older versions of hg won't choke on this dirstate, but they may happily mark the file as clean after a full comparison, destroying all of our hard work. The patch adds a dirstate.normallookup method with the semantics of the current normaldirty, and changes normaldirty to forcefully mark the entry as dirty. This should fix issue522. [1] - well, we could put them in state 'm', but that state has a different meaning.
Mon, 20 Aug 2007 21:10:45 -0500 gendoc: use demandimport
Matt Mackall <mpm@selenic.com> [Mon, 20 Aug 2007 21:10:45 -0500] rev 5209
gendoc: use demandimport
Mon, 20 Aug 2007 21:14:53 -0500 Merge with -crew
Matt Mackall <mpm@selenic.com> [Mon, 20 Aug 2007 21:14:53 -0500] rev 5208
Merge with -crew
Tue, 21 Aug 2007 02:13:32 +0200 make hg add of a removed file unremove the file
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 21 Aug 2007 02:13:32 +0200] rev 5207
make hg add of a removed file unremove the file if a file was removed, hg add shouldn't mark the file as added, but as normal see issue683
Tue, 21 Aug 2007 02:02:08 +0200 abort when adding a file in merged state
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Tue, 21 Aug 2007 02:02:08 +0200] rev 5206
abort when adding a file in merged state
Mon, 20 Aug 2007 22:02:05 +0200 add import from url capability
rupert.thurner@gmail.com [Mon, 20 Aug 2007 22:02:05 +0200] rev 5205
add import from url capability
Sun, 19 Aug 2007 17:38:40 +0200 convert: load parent commits on-demand
Patrick Mezard <pmezard@gmail.com> [Sun, 19 Aug 2007 17:38:40 +0200] rev 5204
convert: load parent commits on-demand
Sun, 19 Aug 2007 17:38:07 +0200 convert: wrap cached commits author remapping
Patrick Mezard <pmezard@gmail.com> [Sun, 19 Aug 2007 17:38:07 +0200] rev 5203
convert: wrap cached commits author remapping
Sun, 19 Aug 2007 14:04:26 -0500 Merge with -stable
Matt Mackall <mpm@selenic.com> [Sun, 19 Aug 2007 14:04:26 -0500] rev 5202
Merge with -stable
Sun, 19 Aug 2007 14:03:56 -0500 match: handle large regexes
Matt Mackall <mpm@selenic.com> [Sun, 19 Aug 2007 14:03:56 -0500] rev 5201
match: handle large regexes Some Python versions don't handle large regexes, so when we hit an overflow, split our regex in two.
(0) -3000 -1000 -300 -100 -10 +10 +100 +300 +1000 +3000 +10000 +30000 tip