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
|
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 |
|||||
|
|
Set the
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:
|
|||||||||||||||||||||
|
|
here's an example directory structure:
when in
to set the ignore property
where to check what properties are set
to see the value of
|
|||||||||||||||||||
|
|
Important to mention: On the Commandline you can't use
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:
|
|||||||||
|
|
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. |
|||||||
|
|
To expand slightly, if you're doing this with the svn command-line tool, you want to type:
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. |
|||||||
|
|
Set the
This will overwrite any current value of
Which will open your editor. You can add multiple patterns, one per line. You can view the current value with:
If you are using a GUI there should be a menu option to do this. |
|||
|
|
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
when we need more than one folder to be ignored
svn pe will need to edit the text file, you can use this command if required to set your text editor using vi
the file look something simply like this
|
|||
|
|
|
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. |
|||
|
|
|
...and if you want to ignore more than one directory (say
on the command line. |
||||
|
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:
|
||||
|
|
|
The command to ignore multiple entries is a little tricky and involves the backward slash:
This command will ignore anything named cache, tmp, null, and and_so_on in the present directory. |
|||||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
bash oneliner for multiple ignores :
|
|||
|
|
|
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. |
|||
|
|
|
Since you're using Versions it's actually really easy:
|
|||
|
|
|
Watch your trailing slashes too. I found that including |
|||
|
|