Reputation: 803
I'm using the built in SVN with Mac OS X and I checked out a project via command line. I got all my projects and everything but the .svn folder wasn't created like it was on my PC. And now SVN is just treating my project like a folder and I can't do updates or anything. Any ideas?
.svn is not a valid folder name for Mac
Upvotes: 0
Views: 532
Reputation: 992797
.svn
certainly is a valid folder name on OS X. However, because it starts with a dot, ls
will hide it by default. Try ls -a
and see whether it shows up.
Upvotes: 5
Reputation: 13397
What is the result of an svn st on the project directory on the local filesystem?
Upvotes: 0