##// END OF EJS Templates
convert: fix test-convert-svn-* problems with mtime not changing...
convert: fix test-convert-svn-* problems with mtime not changing The `svn commit` command does not detect changed files unless their mtime has changed. A quick succession of, for instance, `svn co ...; echo x >> y; svn ci` can thus lead to the change to y being ignored. Edited by pmezard to write in binary mode.

File last commit:

r4659:7a7d4937 default
r6439:c1b47c0f default
Show More
test-hgrc
7 lines | 105 B | text/plain | TextLexer
Benoit Boissinot
make readconfig take a filename instead of a file pointer as argument...
r1473 #!/bin/sh
mkdir t
cd t
hg init
echo "invalid" > .hg/hgrc
Thomas Arendsen Hein
Kill trailing spaces
r4659 hg status 2>&1 |sed -e "s:/.*\(/t/.*\):...\1:"