##// END OF EJS Templates
Make show_changeset show added/deleted files only in debug mode....
Make show_changeset show added/deleted files only in debug mode. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Make show_changeset show added/deleted files only in debug mode. This was necessary due to performance reasons. manifest hash: 35af5e8ff88a8706406fc8c42251ada79c7c9549 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFCwOUkW7P1GVgWeRoRAvB5AKCJ9x/P3XOJVlQnCoh8cblnye+9RgCgkXLW 7Bt8/5yhPnsejYIGUMnppgo= =DNsf -----END PGP SIGNATURE-----

File last commit:

r492:9bd468e3 default
r493:30752b14 default
Show More
test-pull
20 lines | 223 B | text/plain | TextLexer
mpm@selenic.com
Add some more tests...
r336 #!/bin/bash
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -t "1"
hg verify
mpm@selenic.com
test suite: fix timezone problems and port collision problem...
r382 hg serve -p 20059 2>/dev/null &
mpm@selenic.com
Add some more tests...
r336 cd ..
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone http://localhost:20059/ copy
mpm@selenic.com
Add some more tests...
r336 cd copy
hg verify
hg co
cat foo
hg manifest
Thomas Arendsen Hein
Use "kill $!" to kill running background processes....
r492 kill $!