##// END OF EJS Templates
Add a features list to branches.cache to detect caches of old hg versions....
Add a features list to branches.cache to detect caches of old hg versions. The leading space in the written file makes sure that the feature list never can match an existing version, even if the first feature can be read as hex. Additionally old hg versions display the id with --debug, too.

File last commit:

r3748:7b88bd88 default
r4168:bbfe5a3f default
Show More
test-rename-dir-merge
32 lines | 383 B | text/plain | TextLexer
/ tests / test-rename-dir-merge
Matt Mackall
merge: handle directory renames...
r3733 #!/bin/sh
mkdir t
cd t
hg init
mkdir a
echo foo > a/a
echo bar > a/b
hg add a
hg ci -m "0" -d "0 0"
hg co -C 0
hg mv a b
hg ci -m "1 mv a/ b/" -d "0 0"
hg co -C 0
echo baz > a/c
hg add a/c
hg ci -m "2 add a/c" -d "0 0"
hg merge --debug 1
Thomas Arendsen Hein
Fix test-rename-dir-merge for different implementations of ls.
r3748 echo a/* b/*
Matt Mackall
merge: handle directory renames...
r3733 hg st -C
hg ci -m "3 merge 2+1" -d "0 0"
hg co -C 1
hg merge --debug 2
Thomas Arendsen Hein
Fix test-rename-dir-merge for different implementations of ls.
r3748 echo a/* b/*
Matt Mackall
merge: handle directory renames...
r3733 hg st -C
hg ci -m "4 merge 1+2" -d "0 0"