Mercurial > hg
comparison tests/test-revlog-group-emptyiter.t @ 11918:f21ecd091970
tests: unify test-revlog-group-emptyiter
author | Pradeepkumar Gayam <in3xes@gmail.com> |
---|---|
date | Tue, 17 Aug 2010 17:53:11 +0530 |
parents | tests/test-revlog-group-emptyiter@aaaf4af1c173 |
children | b63f6422d2a7 |
comparison
equal
deleted
inserted
replaced
11917:b03cf2349a80 | 11918:f21ecd091970 |
---|---|
1 # issue 1678 | |
2 setting up base repo | |
3 $ hg init a | |
4 $ cd a | |
5 $ touch a | |
6 $ hg ci -Am a | |
7 adding a | |
8 $ cd .. | |
9 | |
10 cloning base repo | |
11 $ hg clone a b | |
12 updating to branch default | |
13 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
14 $ cd b | |
15 | |
16 setting up cset to push | |
17 $ hg up null | |
18 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
19 $ touch a | |
20 different msg so we get a clog new entry | |
21 $ hg ci -Am b | |
22 adding a | |
23 created new head | |
24 | |
25 pushing | |
26 $ hg push -f ../a | |
27 pushing to ../a | |
28 searching for changes | |
29 adding changesets | |
30 adding manifests | |
31 adding file changes | |
32 added 1 changesets with 0 changes to 0 files (+1 heads) | |
33 |