##// END OF EJS Templates
Output file of 'export' is opened as binary (other OS)...
Output file of 'export' is opened as binary (other OS) # HG changeset patch # User thananck@yahoo.com # Node ID 7a240687674e6cf5a8dfd45973d7e3978b89af79 # Parent d2994b5298fb20f87dc1d4747635b280db3c0526 Output file of 'export' is opened as binary (other OS)

File last commit:

r591:eb46971f default
r615:ad2999fa default
Show More
test-rawcommit1
33 lines | 683 B | text/plain | TextLexer
mpm@selenic.com
Add rawcommit tests...
r444 #!/bin/sh -x
mpm@selenic.com
options: kill -d for debug...
r591 hg --debug init
mpm@selenic.com
Add rawcommit tests...
r444 echo this is a1 > a
mpm@selenic.com
options: kill -d for debug...
r591 hg add a
hg commit -t0 -d "0 0" -u user
mpm@selenic.com
Add rawcommit tests...
r444 echo this is b1 > b
mpm@selenic.com
options: kill -d for debug...
r591 hg add b
hg commit -t1 -d "0 0" -u user
hg manifest 1
mpm@selenic.com
Add rawcommit tests...
r444 echo this is c1 > c
mpm@selenic.com
options: kill -d for debug...
r591 hg rawcommit -p 1 -d "0 0" -u user -t2 c
hg manifest 2
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 rm b
mpm@selenic.com
options: kill -d for debug...
r591 hg rawcommit -p 2 -d "0 0" -u user -t3 b
hg manifest 3
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 echo this is a22 > a
mpm@selenic.com
options: kill -d for debug...
r591 hg rawcommit -p 3 -d "0 0" -u user -t4 a
hg manifest 4
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 echo this is c22 > c
mpm@selenic.com
options: kill -d for debug...
r591 hg rawcommit -p 1 -d "0 0" -u user -t5 c
hg manifest 5
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 # merge, but no files changed
mpm@selenic.com
options: kill -d for debug...
r591 hg rawcommit -p 4 -p 5 -d "0 0" -u user -t6
hg manifest 6
hg parents
mpm@selenic.com
Add rawcommit tests...
r444 # no changes what-so-ever
mpm@selenic.com
options: kill -d for debug...
r591 hg rawcommit -p 6 -d "0 0" -u user -t7
hg manifest 7
hg parents