comparison tests/test-convert @ 5124:06154aff2b1a

merge with -stable
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Wed, 08 Aug 2007 23:00:01 +0200
parents 36e8983fe44d
children 71e7c86adcb7
comparison
equal deleted inserted replaced
5123:f94dbc6c7eaf 5124:06154aff2b1a
1 #!/bin/sh
2
3 echo "[extensions]" >> $HGRCPATH
4 echo "convert=" >> $HGRCPATH
5
6 hg init a
7 cd a
8 echo a > a
9 hg ci -d'0 0' -Ama
10 hg cp a b
11 hg ci -d'1 0' -mb
12 hg rm a
13 hg ci -d'2 0' -mc
14 hg mv b a
15 hg ci -d'3 0' -md
16 echo a >> a
17 hg ci -d'4 0' -me
18
19 cd ..
20 hg convert a 2>&1 | grep -v 'subversion python bindings could not be loaded'
21 hg --cwd a-hg pull ../a