##// END OF EJS Templates
Adapted README to new needs.
Adapted README to new needs.

File last commit:

r749:7e4843b7 default
r799:583e290e 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