##// END OF EJS Templates
tests: unify test-revlog-group-emptyiter
Pradeepkumar Gayam -
r11918:f21ecd09 default
parent child Browse files
Show More
@@ -1,23 +1,33 b''
1 #! /bin/sh
2
3 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 ..
4 9
5 echo "# -- setting up base repo"
6 hg init a
7 cd a
8 touch a
9 hg ci -Am a
10 cd ..
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
11 15
12 echo "# -- cloning base repo"
13 hg clone a b
14 cd b
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
15 24
16 echo "# -- setting up cset to push"
17 hg up null
18 touch a
19 hg ci -Am b # different msg so we get a clog new entry
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)
20 33
21 echo "# -- pushing"
22 hg push -f ../a
23
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now