version control - How do I ignore a directory with SVN? -


i started using svn, , have cache directory don't need under source control. how can ignore whole directory/folder svn?

i using versions , textmate on os x , commandline.

set svn:ignore property of parent directory:

svn propset svn:ignore dirname . 

if have multiple things ignore, separate newlines in property value. in case it's easier edit property value using external editor:

svn propedit svn:ignore . 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -