comparison tests/test-clone-failure @ 7927:a218ba5f60df

allow clone into existing but empty directories
author Steve Borho <steve@borho.org>
date Sun, 29 Mar 2009 16:15:06 -0500
parents 1b970cdab695
children 39566bb99a9c
comparison
equal deleted inserted replaced
7926:edf2d83a11aa 7927:a218ba5f60df
41 cd q 41 cd q
42 hg init 42 hg init
43 cd .. 43 cd ..
44 hg clone q 44 hg clone q
45 45
46 # destination directory not empty
47 mkdir a
48 echo stuff > a/a
49 hg clone q a
50 echo $?
51
46 true 52 true