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

link|improve this question

Similar question answered here [SVN checkout ignore folder][1] [1]: stackoverflow.com/questions/192824/svn-checkout-ignore-folder – mloskot Dec 3 '11 at 15:21
feedback

16 Answers

up vote 180 down vote accepted

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|improve this answer
5  
... using the "svn propedit" command. – Blair Conrad Sep 22 '08 at 16:58
It doesn't work as expected. tipi:/var/www/tipi# svn commit -m "More accents" * svn: '/var/www/tipi/tmp' is not a working copy svn: Can't open file '/var/www/tipi/tmp/.svn/entries': No such file or directory tipi:/var/www/tipi# svn propset svn:ignore tmp . property 'svn:ignore' set on '.' tipi:/var/www/tipi# svn commit -m "More accents" * svn: '/var/www/tipi/tmp' is not a working copy svn: Can't open file '/var/www/tipi/tmp/.svn/entries': No such file or directory – Kouber Saparev Mar 29 '10 at 10:35
1  
@Kouber: Your problem is that the shell expansion does not know about svn:ignore properties. So using '*' as parameter explicityl passes tmp to the commit command. Try something like 'svn commit -m "More accents" .' – MarkusSchaber May 6 '11 at 10:58
1  
Thanks for the answer. Pico as an editor: svn propedit svn:ignore . --editor-cmd pico – hade Sep 15 '11 at 8:43
2  
Note: This won't work if the directory is already "in" svn. svn rm --keep-local dirname first. (My svn stat output was huge and I bumped my head into this for a while.) – Erik Aronesty May 2 at 16:24
feedback

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|improve this answer
15  
And to undo this? – Nathan Long Mar 11 '10 at 3:07
13  
I appreciated the description of what each of the parameters stood for. – DonnaLea May 17 '10 at 0:59
I agree with DonnaLea. Great answer, thanks. – Danilo Bargen May 19 '10 at 19:52
7  
@Nathan pdel svn:ignore or just pset svn:ignore "whatever other dirs to ignore" – knoopx Jul 1 '10 at 11:50
1  
One tricky point here that I stumbled over. Make sure you do not add a trailing slash to dirname. For example, when typing svn propset svn:ignore dirname, if you allow the (bash) shell to fill in the dirname for you, it will add that trailing slash, leaving you with the command svn propset svn:ignore dirname/, which doesn't result in the folder being ignored. At least, that was my experience. – David Weinraub Apr 9 at 6:57
feedback

Important to mention:

On the Commandline you can't use

svn add *

This will also add the ignored files, because the command line expands * and therefore svn add believes that you want all files to be added. Therefore use this instead:

svn add --force .
link|improve this answer
8  
+1 for mentioning this subtle point often the source of many headaches. – mike Dec 6 '09 at 12:27
Still seem to have this problem: I created a repository and then checked out the empty working copy of it. Added the svn:ignore prop (containing obj, bin, *.suo, *.user with line breaks), checked it and committed. Then copied some files (including a /bin folder with some binaries) in the directory of the working copy and did a svn add --force . as you suggested, however the binaries get added as well. Am I missing something? This is the first time that I'm adding via command line. Server's running SVN 1.6.5 – rdoubleui Jan 23 '11 at 21:58
then do I have to use svn add dir_name for all directories? – prongs Feb 14 at 11:10
feedback

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|improve this answer
3  
Very good point, thank you. All other answers missed case of nested directories. So the above example (working) you then type in editor ignored_directory (which is by assumption one level below path/to/dir). This won't work though: svn propedit svn:ignore . and then typing path/to/dir/ignored_directory in editor. IOW: SVN matches objects one level down at a time. – macias Mar 10 '10 at 7:43
This is crucial – Frank Nov 9 '11 at 15:28
feedback

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|improve this answer
5  
OMG so this is what was happening to me and driving me mad... Thanks – nabucosound Feb 22 '10 at 11:35
+1 because this wasn't obvious to me either. Thanks for the help, I was lost otherwise. – Ivan Maeder 2 days ago
feedback

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|improve this answer
feedback

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|improve this answer
feedback

thanks for all the contributions above. Just share some additional information from my experiences while ignore files.


When the folders are already under revision control

After svn import and svn co the files, what we usually do for the first time.

All runtime cache, attachments folders will be under version control. so, before svn ps svn:ignore, we need to delete it from repository.

with svn version 1.5 above we can use svn del --keep-local your_folder but lower version, my solution is

  1. svn export a clean copy of your folders (without .svn hidden folder)
  2. svn del the local and repository,
  3. svn ci
  4. copy back the folders
  5. do svn st confirm the folders are flag as '?'
  6. now we can do svn ps according to the solutions

when we need more than one folder to be ignored

  • in one directory i have 2 folders need to be set as svn:ignore
  • if we set one, the other will be removed.
  • then we wonder we need svn pe

svn pe will need to edit the text file, you can use this command if required to set your text editor using vi

export SVN_EDITOR=vi
  1. with "o" you can open a new line
  2. type in all the folder names you want to ignore
  3. hit 'esc' key to escape from edit mode
  4. type ":wq" then hit enter. to save and quit

the file look something simply like this

runtime
cache
attachments
assets
link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

...and if you want to ignore more than one directory (say build/ temp/ and *.tmp files), you could either do it in two steps (ignoring the first and edit ignore properties (see other answers here) or one could write something like

svn propset svn:ignore "build
temp
*.tmp" .

on the command line.

link|improve this answer
must be "propset" not "proset" – Tim Büthe Dec 4 '11 at 13:30
@TimBüthe Thank you. I edited it. – DerMike Dec 4 '11 at 21:22
feedback

The command to ignore multiple entries is a little tricky and involves the backward slash:

svn propset svn:ignore "cache\
tmp\
null\
and_so_on" .

This command will ignore anything named cache, tmp, null, and and_so_on in the present directory.

link|improve this answer
3  
That's a backslash, not a forward slash. – Joe White Aug 26 '11 at 16:03
2  
And just to clarify: The backslash here is not a feature of svn; it's simply a way to enter a multi-line string on the shell. You can also use an editor and just write multiple lines. – sleske Oct 25 '11 at 9:20
feedback

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|improve this answer
feedback

bash oneliner for multiple ignores :

svn propset svn:ignore ".project"$'\n'".settings"$'\n'".buildpath" "yourpath"
link|improve this answer
feedback

I had problems getting nested directories to be ignored; the top directory I wanted to ignore wouldn't show with 'svn status' but all the subdirs did. This is probably self-evident to everyone else, but I thought I'd share it:

EXAMPLE:

/trunk

/trunk/cache

/trunk/cache/subdir1

/trunk/cache/subdir2

cd /trunk
svn ps svn:ignore . /cache
cd /trunk/cache
svn ps svn:ignore . *
svn ci
link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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