Mercurial > hg
annotate tests/test-convert-bzr-ghosts @ 7952:b214066b7e1d
rebase: store/restore arguments correctly
Keep and keepbranches were lost after an interruption
author | Stefano Tortarolo <stefano.tortarolo@gmail.com> |
---|---|
date | Sun, 29 Mar 2009 14:43:49 +0200 |
parents | 9e6d6568bf7a |
children |
rev | line source |
---|---|
7053 | 1 #!/bin/sh |
2 | |
7058
9e6d6568bf7a
`source` doesn't work for some /bin/sh, use `.` instead
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
7053
diff
changeset
|
3 . "$TESTDIR/bzr-definitions" |
7053 | 4 |
5 cat > ghostcreator.py <<EOF | |
6 import sys | |
7 from bzrlib import workingtree | |
8 wt = workingtree.WorkingTree.open('.') | |
9 | |
10 message, ghostrev = sys.argv[1:] | |
11 wt.set_parent_ids(wt.get_parent_ids() + [ghostrev]) | |
12 wt.commit(message) | |
13 EOF | |
14 | |
15 echo % ghost revisions | |
16 mkdir test-ghost-revisions | |
17 cd test-ghost-revisions | |
18 bzr init -q source | |
19 cd source | |
20 echo content > somefile | |
21 bzr add -q somefile | |
22 bzr commit -q -m 'Initial layout setup' | |
23 echo morecontent >> somefile | |
24 python ../../ghostcreator.py 'Commit with ghost revision' ghostrev | |
25 cd .. | |
26 hg convert source source-hg | |
27 glog -R source-hg |