##// END OF EJS Templates
Fix empty pull bug that appeared this morning...
Fix empty pull bug that appeared this morning -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fix empty pull bug that appeared this morning manifest hash: 53e4709a701f03d9905933c80758ba13caf3998c -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCwxdJywK+sNU5EO8RAuoPAJ4tb9fd1Emm21/HLAEpyntaW2uoHQCfcc8z J8LB4mVG3gTsvRtiLZBVV/g= =+2C3 -----END PGP SIGNATURE-----

File last commit:

r485:c5705ab9 default
r522:2f1de824 default
Show More
test-up-local-change
35 lines | 447 B | text/plain | TextLexer
/ tests / test-up-local-change
mpm@selenic.com
Add a simple testing framework...
r331 #!/bin/bash
export HGMERGE=true
set -ex
mkdir r1
cd r1
hg init
echo a > a
hg addremove
hg commit -t "1" -u test -d "0 0"
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone . ../r2
cd ../r2
mpm@selenic.com
Add a simple testing framework...
r331 hg up
echo abc > a
mpm@selenic.com
testing fixups...
r332 hg diff > ../d
sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331
cd ../r1
echo b > b
echo a2 > a
hg addremove
hg commit -t "2" -u test -d "0 0"
cd ../r2
hg -q pull ../r1
hg status
hg -d up
hg -d up -m
hg parents
hg -v history
mpm@selenic.com
testing fixups...
r332 hg diff > ../d
sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331