I have this tmp/ and cache/ directories, that keep generating files that don't need to be commited.
How can I set it so svn ignores them, but doesn't delete them or remove them from the repository, they are needed for the site to work.
|
I have this tmp/ and cache/ directories, that keep generating files that don't need to be commited. How can I set it so svn ignores them, but doesn't delete them or remove them from the repository, they are needed for the site to work.
| |||
|
feedback
|
EDIT: Here's the steps if you already previously committed
| |||||||||||||
feedback
|
|
The command is:
You can use * for "any chars" in the path like, *.project if you want. Tortoise svn is a good solution for user friendly interface(like Petar Ivanov says). If you are on PC it's "must have" software. If you are on other OS or want full control of svn I suggest you read more about command line working with svn. It's not hard and google knows many things about it :) you can read more about it: here And more about cmd svn: here | |||||||
feedback
|
|
You can add a svn property to the parent folder: svn:ignore. If you use tortoise: In the console: | |||||||||
feedback
|
svn rmto all of them, then addsvn:ignoreproperty, then put them back. It is the simplest (and the only) way to do what you want – zerkms Jul 30 '11 at 8:54