Joe Swatosh <joe.swat...@gmail.com> writes: > X:\>svn mkdir --parents X:\wc\parentX\child > A wc\parentX > A wc\parentX\child > > X:\>svn ci X:\wc -m"Two" > svn: Working copy 'X:\wc' locked > svn: constraint failed > svn: columns wc_id, local_dir_relpath are not unique > svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details) > > Shouldn't this work?
I believe so. The problem is that the mkdir --parents call is leaving the working copy locked: rm -rf repo wc svnadmin create repo svn co file://`pwd`/repo wc svn mkdir --parents wc/foo/bar svn st wc L wc A wc/foo2 A wc/foo2/bar -- Philip