I have a directory structure that looks like:
components
|_ticker
|_sass-utils
|_ ..
|_ticker.css
|_ticker.sass
|_ ..
There are several files I don't want under SVN version control. components is already committed but ticker is not yet committed and svn status
currently states:
? components/ticker
If I cd
into the ticker directory then try: svn propedit svn:ignore .
(which is what I tried from this SO solution) I get the error:
svn: E200005: 'components/ticker' is not under version control
I believe that once I svn add components/ticker
, files under ticker
can no longer be ignored.
So how do I ignore files that are not under version control yet?