I am using svn
on command line on OSX.
In my project I want to ignore cache
and sessions
directories but none of the other topics have helped and I can't see why not.
/my-project/storage/framework/
cache/
sessions/
views/
I want to ignore cache
and sessions
and their contents from version control. They keep updating or adding new files. I already have some under version control and I don't know how to remove the ones already under control and ignore them all in future.
What I have:
> svn stat
? storage/framework/cache/96
? storage/framework/sessions/527212b940937ee8b637e516a5169aa933d03ce0
So far I've tried:
> cd storage/framework
> svn propset svn:ignore cache .
> svn proplist
Properties on '.':
svn:ignore
>svn propget svn:ignore
cache
>svn status
M .
? cache/96
? sessions/527212b940937ee8b637e516a5169aa933d03ce0
Should the cache
directory not be ignored now?
Then I could do the same for sessions and it's contents if it worked.