Ran into a very annoying issue SVN issue all due to the case sensitivity of the URL during commits.
The actual/correct path of the repository is :
//svnserver/respos/Android
For checkouts I can use the URL path of
//svnserver/repos/android
and checkout projects without any issues
However, I cannot using the, //svnserver/repos/android, URL to commit files! I kept getting forbidden error messages.
Finally after playing around, realized that I had to be checking in to the URL of
//svnserver/respos/Android
UGGGhhh.
So if you’re running into a forbidden error and you can’t find anything wrong, double check that you’re URL is in the right case! Better yet when you checkout a project, make sure that the URL you use is in the correct case!