Mercurial > hg
annotate tests/test-bad-pull @ 408:3695fbd2c33b
[PATCH] Merging files that are deleted in both branches
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
[PATCH] Merging files that are deleted in both branches
From: Michael A Fetterman <Michael.Fetterman@cl.cam.ac.uk>
OK, attached is an improved version of this patch...
When I went back through it, I discovered that the prior version was wrong
when doing real merges (as opposed to jumping between revisions that have
a simple linear relationship). So that's been addressed here, too.
> Here's an hg changeset patch that deals with simultaneous deletion of a
file
> in both the working directory and in a merged branch.
>
> Test case included in the patch.
manifest hash: c8078733c252403314d8046efa6ecefc49c83050
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCuNF8ywK+sNU5EO8RArtdAJ9syw/JXRZzP1sxnEYXzZywkJLAPACeKpqL
5osA3AggrCbbSLTNcYVXJ8U=
=T5Ik
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Tue, 21 Jun 2005 18:48:28 -0800 |
parents | fbe8834923c5 |
children | c5705ab9cebd |
rev | line source |
---|---|
395 | 1 #!/bin/bash |
2 | |
3 mkdir copy | |
4 cd copy | |
5 hg init http://localhost:20059/ | |
6 hg verify | |
7 hg co | |
8 cat foo | |
9 hg manifest | |
10 | |
11 cat > dumb.py <<EOF | |
12 import BaseHTTPServer, SimpleHTTPServer, signal | |
13 | |
14 def run(server_class=BaseHTTPServer.HTTPServer, | |
15 handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler): | |
16 server_address = ('localhost', 20059) | |
17 httpd = server_class(server_address, handler_class) | |
18 httpd.serve_forever() | |
19 | |
20 signal.signal(signal.SIGTERM, lambda x: sys.exit(0)) | |
21 run() | |
22 EOF | |
23 | |
24 python dumb.py 2>/dev/null & | |
25 | |
26 mkdir copy2 | |
27 cd copy2 | |
28 hg init http://localhost:20059/foo | |
29 hg verify | |
30 hg co | |
31 cat foo | |
32 hg manifest | |
33 | |
34 kill %1 |