How to make SVN ignore a folder?
Posted
by pg
on Stack Overflow
See other posts from Stack Overflow
or by pg
Published on 2009-12-15T20:35:32Z
Indexed on
2010/04/23
22:33 UTC
Read the original article
Hit count: 251
I want to make SVN ignore everything that is in my wordpress directory. It bring me nothing but headaches because of auto updates to plugins etc.
When I...
svn propedit svn:ignore ./blog
It tells me...
svn: None of the environment variables SVN_EDITOR, VISUAL or EDITOR is set, and no 'editor-cmd' run-time configuration option was found
So I...
[phil@sessions www]$ export SVN_EDITOR=emacs
[phil@sessions www]$ svn propedit svn:ignore ./blog
But I don't know what to put in here to make it ignore.
© Stack Overflow or respective owner