Yii and SVN

Which Yii folders can safely be added to the svn ignore list? At the moment I have the ‘assets’ folder on ignore and ideally I’d like to put the protected/runtime folder on ignore but will Yii automatically create this folder on a user’s machine if it’s missing from the source?

Why not trying to delete it and run your application?

Don’t add the folder name to svn:ignore. What i do is set svn:ignore to ‘*’ on the folders itself:


svn ps svn:ignore '*' assets 

svn ps svn:ignore '*' protected/runtime

Mike has the right idea. This way the user gets an empty folder when checking out.