Reputation: 531
I am getting the following error when I try to check C# 2008 application code into the latest version of anksvn.
error message:
SharpSvn.SvnRepositoryIOForbiddenException: Commit failed (details follow): ---> SharpSvn.SvnRepositoryIOForbiddenException: Access to '/svn/city/!svn/me' forbidden
--- End of inner exception stack trace ---
at SharpSvn.SvnClientArgs.HandleResult(SvnClientContext client, SvnException error, Object targets)
at SharpSvn.SvnClientArgs.HandleResult(SvnClientContext client, svn_error_t* error, Object targets)
at SharpSvn.SvnClient.Commit(ICollection`1 paths, SvnCommitArgs args, SvnCommitResult& result)
at Ankh.Services.PendingChanges.PendingChangeHandler.<>c__DisplayClass1b.<Commit_CommitToRepository>b__19(Object sender, ProgressWorkerArgs e)
at Ankh.ProgressRunnerService.ProgressRunner.Run(Object arg
I am hoping you can suggest what I can do to resolve the problem.
Possibly can you point me to a link that will resolve the problem and/or tell me how to resolve this problem?
I do not know where this location is at. I can check code out from anksvn but I can not check code into subversion.
This is the second time that I have worked with anksvn.
I am told that have I have access to everything that I need access to.
Upvotes: 1
Views: 938
Reputation: 107040
You can check out the code, but not check in your changes?
Can you use the Subversion command line? Check out the directory from there, make a change, and then see if you can commit your code.
The error is saying you don't have permission. Maybe trying this from the command line will give you a better idea what the error could be.
Upvotes: 1