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.

link|improve this question

So have you already added them (the files in the cache dir) to repository? – zerkms Jul 30 '11 at 8:38
1  
yes, they are added – mgPePe Jul 30 '11 at 8:48
so you need to copy them somewhere, then perform svn rm to all of them, then add svn:ignore property, then put them back. It is the simplest (and the only) way to do what you want – zerkms Jul 30 '11 at 8:54
feedback

3 Answers

up vote 3 down vote accepted
$ cd /path/to/app/tmp
$ svn propset svn:ignore '*' .
$ cd /path/to/app/cache
$ svn propset svn:ignore '*' .

EDIT: Here's the steps if you already previously committed

$ cd /path/to/app/tmp
$ svn st
M slkdjfag.jpg
M gasgsag.png
. #bunch of M's

$ svn rm * --force
$ svn ci -m'trunk: cleaning up tmp directory'
$ svn propset svn:ignore '*' .
$ touch a
$ svn st // shouldn't output anything
link|improve this answer
that's what i did, but I still get all the files M when I svn status – mgPePe Jul 30 '11 at 8:51
2  
You need to remove those if you previously committed, cd /path/to/app/tmp/ ; svn rm * – NiftyDude Jul 30 '11 at 8:51
If you have .svn dirs in them you must remove them too. – Lachezar Todorov Jul 30 '11 at 8:53
So basically, I can't remove a folder from SVN syncing and still keep it in repository, the best I can do is remove all the modifiable content, and set ignore to the content of the folder? – mgPePe Jul 30 '11 at 8:55
@Lachezar Todorov: you're absolutely wrong. There is no any valid reason ever to manually remove .svn – zerkms Jul 30 '11 at 8:55
show 8 more comments
feedback

The command is:

svn propedit svn:ignore ./some_path

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

link|improve this answer
Hi, I did this and all files still appear when I type svn status. It seems svn ignore excludes the files altogether, doesn't stop syncing. But I don't want those folders deleted, since they are needed for project – mgPePe Jul 30 '11 at 8:49
@Todorov Using TortoiseSVN will delete the folder to be able to ignore it. Delete and add to ignore list is the only option. There's NO Ignore command :) – Nam G. VU Aug 4 '11 at 6:57
Delete in Tortoise means delete from svn not your current folder. – Lachezar Todorov Aug 4 '11 at 13:17
feedback

You can add a svn property to the parent folder: svn:ignore.

If you use tortoise: Right click -> Properties -> SVN -> Properties... -> (add or edit)

In the console: svn propset svn:ignore [path/file(s)]

link|improve this answer
Hi, I did this and all files still appear when I type svn status. It seems svn ignore excludes the files altogether, doesn't stop syncing. But I don't want those folders deleted, since they are needed for project – mgPePe Jul 30 '11 at 8:49
those files should not be checked in - when you update they are not affected - that's what svn:ignore is ... – Petar Ivanov Jul 30 '11 at 8:52
@Petar Ivanov: the files that have already added will be updated/committed on change as well. svn:ignore affects only to new files – zerkms Jul 30 '11 at 8:53
that's what I am saying - those files should not be checked in – Petar Ivanov Jul 30 '11 at 8:54
feedback

Your Answer

 
or
required, but never shown

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