##// END OF EJS Templates
merge with stable
merge with stable

File last commit:

r12156:4c94b6d0 default
r12278:c4c2ba55 merge default
Show More
test-pull-permission
19 lines | 166 B | text/plain | TextLexer
/ tests / test-pull-permission
#!/bin/sh
mkdir a
cd a
hg init
echo foo > b
hg add b
hg ci -m "b"
chmod -w .hg/store
cd ..
hg clone a b
chmod +w a/.hg/store # let test clean up
cd b
hg verify