vote up 3 vote down star
2

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?

flag

75% 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

6 Answers

vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

@matt b

There is no .svnignore file, that's what I want though... the way to ignore in subversion is to set svn:ignore properties on the directory... but that marks the directory as modified, which I don't want to see in my svn status because I don't want to check these ignores in.

If there is a .svnignore file that I am not aware of, that would of course solve the problem..............

link|flag
No, there is not a .svnignore that you are not aware of. An easy workaround is to write a simple script that adds and removes these links as needed. A better solution, I think, is not to put libraries in a directory where they don't really belong. – sock Sep 9 '08 at 17:37
well, they belong there for ME, they just don't REALLY belong in source control... I may actually be able to remove them, but there are still other files I would love to ignore but can't because my only option is svn:ignore – Mike Stone Sep 9 '08 at 17:40
vote up 5 vote down

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|flag
vote up 1 vote down

@Todd Myhre

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.

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.

link|flag

Your Answer

Get an OpenID
or

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