##// END OF EJS Templates
Fix copy in subdirectories...
Fix copy in subdirectories Spotted by Chad Netzer

File last commit:

r774:6592c4f5 default
r781:26f3d353 default
Show More
test-up-local-change
33 lines | 436 B | text/plain | TextLexer
/ tests / test-up-local-change
#!/bin/sh
set -ex
mkdir r1
cd r1
hg init
echo a > a
hg addremove
hg commit -m "1" -d "0 0"
hg clone . ../r2
cd ../r2
hg up
echo abc > a
hg diff > ../d
sed "s/\(\(---\|+++\) [^ \t]*\)[ \t].*/\1/" < ../d
cd ../r1
echo b > b
echo a2 > a
hg addremove
hg commit -m "2" -d "0 0"
cd ../r2
hg -q pull ../r1
hg status
hg --debug up
hg --debug up -m
hg parents
hg -v history
hg diff > ../d
sed "s/\(\(---\|+++\) [^ \t]*\)[ \t].*/\1/" < ../d