view tests/test-pull-permission @ 12251:20f011311212

merge with crew
author Matt Mackall <mpm@selenic.com>
date Sat, 11 Sep 2010 16:17:43 -0500
parents 4c94b6d0fb1c
children
line wrap: on
line source

#!/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