Thursday, November 13, 2008

cakephp - ignoring tmp from subversion

Some files like contents of tmp need to be ignored from versioning system like subversion.

I was being lazy, so instead of figuring it out, I did a google search and found this blog post that does exactly that:
http://pjhile.com/ignoring-cakephps-tmp-directory-with-subversion#comments

Basically, here is the command I used from that post:
svn propset svn:ignore 'tmp' .
svn ci -m 'Ignoring "tmp" directory.'

No comments: