up vote 7 down vote favorite
2
share [g+] share [fb]

So I have some files I want to ignore in a subversion repository, but I don't want my ignore patterns for this to be propagated to the repository.

In other words, I added some private files in my checkout that I want to keep, but they only exist for me and wouldn't make sense to be ignored for everyone, so if I use the svn:ignore, this will apply on the directory, and I either have to check that in (which I don't want to do), or see that this directory was modified every time I do an svn status.

So, ideally I would like something like a .svnignore file which I could then mark to ignore itself as well as some other files (I think this is a possibility in git for example, using a .gitignore file, or whatever the name is).

I'm guessing it might work to ignore the whole directory (maybe), but then I suspect I won't see any new files in that directory, which would also not be desirable.

So does anybody know a way to do this in subversion?

link|improve this question

80% accept rate
count me in, I want to change my config files and not check them in, but they still need in the repo and need changing when I get the ticket for fixing a thing in there. – DevelopingChris Sep 9 '08 at 17:43
feedback

4 Answers

Subversion does have a per-user, global ignore setting, which sounds like what you want. Look in your .subversion directory (found in your home directory) and locate the Miscellany section of the config file. There should be an entry called global-ignores.

For Windows users, this setting is found in the registry under HKEY_LOCAL_MACHINE\Software\Tigris.org\Subversion.

More information is available in this document.

link|improve this answer
I thought of the global ignore too, and after not finding a dotfile solution, I decided to attempt that... though I think it is a bit hacky to define specific files of 1 repository in a global setting (I'd rather have an ignore setting per repository). Unfortunately, it doesn't seem to work. I could match my file as "foo.file", but I can't specify the file specifically "/full/path/to/foo.file"... I can't even specify a relative path such as "to/foo.file". I think the global-ignores only deals with the NAME of the file, instead of the full path. – Mike Stone Sep 9 '08 at 19:00
This is insufficient, I want to be able to ignore specific files in specific checkouts and not have them affect other checkouts... or even other files of the same name in the same checkout. – Mike Stone Sep 9 '08 at 19:00
I don't think that's what this question is asking. Sounds like Mike wants svn to ignore certain files and directories in one particular working copy, not every working copy on his whole system. btw, I have a similar unanswered question: stackoverflow.com/questions/1146347/… – allyourcode Jan 19 '10 at 23:35
feedback

I'm confused about 2 things:

  • why do you have files that you don't want to check in that other people might want to check in? seems like you'd get a conflict if that happened anyway
  • does just "ignoring" in the human sense not work for you?

I'm just having trouble seeing a scenario where you wouldn't want to use svn:ignore...

link|improve this answer
I'm trying to do the same thing. Yes, you can ignore those files, but it would be much better if svn were to ignore those files. It's kind of like how you'd want a search engine to put results you care about at the top, not on the third or fourth page. – allyourcode Jan 19 '10 at 23:39
feedback

Couldn't you in theory just not check in your .svnignore file?

link|improve this answer
feedback

Well, in my specific case, there is a lib directory where we store 3rd party libs. I have some symlinks to some other libs that don't really belong there, but I added them there for a convenience for some things that make sense for me (but not everyone else using the repository). Thus, I don't want them cluttering up my svn status.

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.