comparison tests/test-debugrename @ 4637:5a088ac232e6

Add test for debugrename
author Patrick Mezard <pmezard@gmail.com>
date Wed, 20 Jun 2007 00:09:32 +0200
parents
children
comparison
equal deleted inserted replaced
4636:bcfb3a30a112 4637:5a088ac232e6
1 #!/bin/sh
2
3 hg init
4 echo a > a
5 hg ci -Am t
6
7 hg mv a b
8 hg ci -Am t1
9 hg debugrename b
10
11 hg mv b a
12 hg ci -Am t2
13 hg debugrename a
14
15 echo % test with --rev
16 hg debugrename --rev 1 b
17