##// END OF EJS Templates
Add basic qsave/qrestore test.
Brendan Cully -
r2817:ff3edd1c default
parent child Browse files
Show More
@@ -0,0 +1,16 b''
1 #!/bin/sh
2
3 HGRCPATH=$HGTMP/.hgrc; export HGRCPATH
4 echo "[extensions]" >> $HGTMP/.hgrc
5 echo "mq=" >> $HGTMP/.hgrc
6
7 hg init a
8 cd a
9
10 echo 'base' > base
11 hg ci -Ambase -d '1 0'
12
13 hg qnew -mmqbase mqbase
14
15 hg qsave
16 hg qrestore 2
@@ -0,0 +1,2 b''
1 adding base
2 restoring status: hg patches saved state
General Comments 0
You need to be logged in to leave comments. Login now