Category Archives: Subversion

How to SVN merge directories recursively

The correct way to recursively merge two branches using Subversion: svn merge target_dir@revision source_dir@revision working_dir Notice: working_dir is most likely the target_dir target_dir comes before source_dir Use this example when you’re in the working directory you’re trying to merge into: svn … Continue reading

Posted in Linux, Subversion | Leave a comment

Change file permissions in Subversion

svn propset svn:executable “*” myfile.txt

Posted in Linux, Subversion | Leave a comment

How To Use SVN merge

If you created a branch and want to merge your branch changes into trunk, here’s what to do: svn merge trunk_path@head branch_path@head .

Posted in Subversion | Leave a comment

How to setup a basic SVN repository and server

Become root and install subversion via yum # yum install -y subversion Create your svnroot directory # mkdir -p /home/svnroot # svnadmin create /home/svnroot Edit your svnserve.conf # vim /home/svnroot/conf/svnserve.conf Your basic svnserve.conf will look like this: [general] anon-access = … Continue reading

Posted in Linux, Subversion | Leave a comment