##// END OF EJS Templates
Add some tests to the repo
Add some tests to the repo

File last commit:

r28:9f64ee81 default
r28:9f64ee81 default
Show More
simple-merge
22 lines | 221 B | text/plain | TextLexer
set -ex
export EDITOR=true
rm -rf test branch
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit
hg verify
cd ..
cp -a test branch
cd branch
echo bar>>foo
hg commit
cd ../test
hg merge ../branch
hg verify