vote up 2 vote down star

How do I ignore all files within a folder under source control?

/project/published/ (folder I want to keep)

/project/published/some_file(s) (files/folders i don't want)

More Details: Currently when I go to commit changes for my project I see allot of files that I don't want to. They are files that get published to a folder and i don't need them under source control. I won't ever know the names of these files as they are chosen by users.

I tried to use the property: svn:ignore

with value: published/*

but that did not work. Any ideas?

Thanks

flag

3 Answers

vote up 2 vote down

I've found a solution. If I set the svn:ignore property directly on the folder I want to keep (published) and set it's value to * then it does what I want. I would have liked to add this property to the project root but this works too.

prop - svn:ignore

value - *

Thanks for the suggestions.

link|flag
vote up 1 vote down

Perhaps this can help you: in the Commit dialog there's a check box to "Show unversioned files". It's not the same as telling Tortoise/SVN to ignore them but might just do the trick. HTH

link|flag
I've been using that approach and it's been a hassle. If I have that unchecked I sometimes neglect to add new files to source. – Mat Nov 13 '08 at 23:20
vote up 0 vote down

I'm guessing you tried:

svn propset svn:ignore published/*

svn propset needs the value and target seperated:

svn propset svn:ignore [value] [target]

...so try:

svn propset svn:ignore "*" published

(Don't forget the quotes.)

link|flag
Your suggestion let me to apply the property directly to the folder as I wasn't using the command line to set the property but using TortoiseSVN's UI instead. – Mat Nov 13 '08 at 23:32

Your Answer

Get an OpenID
or

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