##// END OF EJS Templates
Provided platform dependent implementations for explain_exit...
Provided platform dependent implementations for explain_exit os.system return code is system dependent.

File last commit:

r749:7e4843b7 default
r782:cdb9e95b default
Show More
test-conflict
17 lines | 269 B | text/plain | TextLexer
#!/bin/sh
set -x
hg init
echo "nothing" > a
hg add a
hg commit -m ancestor -d "0 0"
echo "something" > a
hg commit -m branch1 -d "0 0"
hg co 0
echo "something else" > a
hg commit -m branch2 -d "0 0"
export HGMERGE=merge
hg up -m 1
hg id
grep -Ev ">>>|<<<" a
hg status