Get Adobe Flash playerPlugin by wpburn.com wordpress themes

Archive for the “svn” Category

After googling the internet for hours I managed to get the perfect trac + svn setup. Because we use contractors at work, I needed a setup where the security is global but at the same time based on project by project basis. Therefore trac uses a global .htaccess and svn uses the authz file for authentication. At the moment this is working greate. To set up a new trac project is simply a case of creating the project, copying a base projects database and config file and then editing the new project’s config file.

We use a base project that is configured for all our core developers, which means im not adding the same permissions and groups all the time.

Read the rest of this entry »

Comments Comments

There are two ways of doing this

svn export . ../new_dir

or

find . -name .svn -prune -exec rm -rfv {} \;

Either way, both will work. I personally use export, because if there is a problem it means that I do not have to checkout an entire project

Comments Comments