vote up 10 vote down star
6

Just started using SVN and I have a cache directory that I don't need under source control. How can I ignore the whole directory/folder with SVN?

Edit: Using Versions and TextMate on OSX and commandline

flag

67% accept rate

11 Answers

vote up 21 vote down check

Set the svn:ignore property of the directory:

svn propset svn:ignore dirname .

If you have multiple things to ignore, separate by newlines in the property value. In that case it's easier to edit the property value using an external editor:

svn propedit svn:ignore .
link|flag
... using the "svn propedit" command. – Blair Conrad Sep 22 '08 at 16:58
vote up 0 vote down

Set the svn:ignore property. Most UI svn tools have a way to do this as well as the command line discussion in the link.

link|flag
vote up 2 vote down

To expand slightly, if you're doing this with the svn command-line tool, you want to type:

svn propedit svn:ignore path/to/dir

which will open your text-editor of choice, then type '*' to ignore everything inside it, and save+quit - this will include the directory itself in svn, but ignore all the files inside it, to ignore the directory, use the path of the parent, and then type the name of the directory in the file. After saving, run an update ('svn up'), and then check in the appropriate path.

link|flag
vote up 0 vote down

If you are using a frontend for SVN like TortoiseSVN, or some sort of IDE integration, there should also be an ignore option in the same menu are as the commit/add operation.

link|flag
vote up 3 vote down

Gilean, are you using a particular SVN client (i.e. tortoise)? In the tortoise client, on commit, you have the option of right clicking items and selecting "Add to ignore list". The answer here depends on how you access your SVN repository.

link|flag
vote up 0 vote down

If your project directory is named /Project, and your cache directory is named /Project/Cache, then you need to set a subversion property on /Project. The property name should be "svn:ignore" and the property value should be "Cache".

Refer to this page in the Subversion manual for more on properties.

link|flag
vote up 0 vote down

Jason's answer will do the trick. However, instead of setting svn:ignore to "." on the cache directory, you may want to include "cache" in the parent directory's svn:ignore property, in case the cache directory is not always present. I do this on a number of "throwaway" folders.

link|flag
vote up 3 vote down

Set the svn:ignore property on the parent directory:

$ cd parentdir
$ svn ps svn:ignore . 'cachedir'

This will overwrite any current value of svn:ignore. You an edit the value with:

$ svn pe svn:ignore .

Which will open your editor. You can add multiple patterns, one per line.

You can view the current value with:

$ svn pg svn:ignore .

If you are using a GUI there should be a menu option to do this.

link|flag
vote up 8 vote down

here's an example directory structure:

\project
    \source
    \cache
    \other

when in project you see that your cache dir is not added and shows up as such

> svn st
M  source
?  cache

to set the ignore property

> svn propset svn:ignore cache .

where svn:ignore is the name of the property you're setting, cache is the value of the property, and . is the directory you're setting this property on. It should be the parent directory of the cache directory that needs the property.

to check what properties are set

> svn proplist
Properties on '.':
  svn:ignore

to see the value of svn:ignore

> svn propget svn:ignore
cache
link|flag
vote up 1 vote down

Important to mention:

On the Commandline you can't use

svn add *

this will also add the ignored files, because the Commandline expands * and though, each file is given on the Commandline. svn add believes that you would explicitly add those file. Therefore use

svn add --force .
link|flag
+1 for mentioning this subtle point often the source of many headaches. – michael Dec 6 at 12:27
vote up 0 vote down

Since I spent a while trying to get this to work, it should be noted that if the files already exist in svn, you need to svn delete them, and then edit the svn:ignore property.

I know that seems obvious, but they kept showing up as ? in my svn status list, when I thought it would just ignore them locally.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.