Hi, I have two requirements but I'm not sure whether SVN is capable of doing it
1. syncing two directories Suppose I have two directories like * http://192.168.15.2/svn/develop/data/docs/* and * http://192.168.15.2/svn/deploy/data/docs/. *Developers always update 1st url and svn should be able to sync the 2nd url with the 1st url updates. Is this really possible with svn commands ?(I don't think so). Even if I want to use some cronjob which can do this , there are some hundreds of directories like this which will hectic for me to use a cron job. 2. Standard SVN tree structure Suppose I have the below url *http://192.168.15.2/svn/develop/data/docs/trunk/<files>* sometimes developers tend to check in files directly to* http://192.168.15.2/svn/develop/data/docs/<files> which I want to avoid this. Is this possible?. They should only check in within docs/trunk/ otherwise svn shouldn't allow check in directly to docs/.* * * Thank You