##// 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-up-local-change
35 lines | 455 B | text/plain | TextLexer
/ tests / test-up-local-change
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a simple testing framework...
r331
export HGMERGE=true
set -ex
mkdir r1
cd r1
hg init
echo a > a
hg addremove
hg commit -t "1" -u test -d "0 0"
mpm@selenic.com
[PATCH] add clone command...
r485 hg clone . ../r2
cd ../r2
mpm@selenic.com
Add a simple testing framework...
r331 hg up
echo abc > a
mpm@selenic.com
testing fixups...
r332 hg diff > ../d
sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331
cd ../r1
echo b > b
echo a2 > a
hg addremove
hg commit -t "2" -u test -d "0 0"
cd ../r2
hg -q pull ../r1
hg status
mpm@selenic.com
options: kill -d for debug...
r591 hg --debug up
hg --debug up -m
mpm@selenic.com
Add a simple testing framework...
r331 hg parents
hg -v history
mpm@selenic.com
testing fixups...
r332 hg diff > ../d
sed "s/\(\(---\|+++\).*\)\t.*/\1/" < ../d
mpm@selenic.com
Add a simple testing framework...
r331