Hi All,
Stale empty parent, when added a new child not give a conflict or Out of
date error?
The following snippet should be self explanatory.
########Script starts here############
cd /tmp
rm -rf repos
svnadmin create repos
rm -rf wc
mkdir wc
svn mkdir file:///tmp/repos/abc -m 'creating abc'
svn co file:///tmp/repos wc/wc1
svn co file:///tmp/repos wc/wc2
curdir=`pwd`
cd wc/wc1
svn mkdir abc/pqr
svn ci -m 'creating pqr under abc from wc1'
svn update
svn rm abc
svn ci -m 'removing abc from wc1'
echo 'ls from ' `pwd` 'after deleting abc'
svn mkdir file:///tmp/repos/abc -m 'creating abc again from wc1'
cd $curdir
cd wc/wc2
echo 'ls from ' `pwd`
ls -l
svn info
svn mkdir abc/xyz
svn ci -m 'creating xyz under abc from wc2'
########Script ends here############
With regards
Kamesh Jayachandran
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Mar 20 19:41:18 2006