We Recommend

bash Cookbook: Solutions and Examples for bash Users bash Cookbook: Solutions and Examples for bash Users
bash Cookbook teaches shell scripting the way Unix masters practice the craft. It presents a variety of recipes and tricks for all levels of shell programmers so that anyone can become a proficient user of the most common Unix shell -- the bash shell -- and cygwin or other popular Unix emulation packages.


Posted By

wbowers on 09/18/08


Tagged

svn subversion recursive ignore svnignore


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

koncept
sherz


Recursive svn:ignore


Published in: Bash 


URL: http://athenageek.wordpress.com/2008/04/16/svnignore/

  1. # Set up an ignores file in this directory
  2. svn propedit svn:ignore .
  3.  
  4. # Copy the svnignores.txt file into the svn:ignores information
  5. # for this directory and all contained directories recursively
  6. svn -R propset svn:ignore -F svnignores.txt .

Report this snippet 

You need to login to post a comment.