Reputation: 161
Can some one help me out on this issue,
When i try to run git svn fetch through the script on my windows
it says : Can't create session: Unable to connect to a repository at URL 'https:........' forbidden at /mingw64/share/perl5/site_perl/Git/SVN.pm
While i get access to repo with the same id,pwd.
Upvotes: 4
Views: 1224
Reputation: 1323483
That generally comes from perl/Git/SVN.pm
, line 310
Since your next question suggests it was a BitBucket repository, you can follow the official documentation (for Fisheye, but applicable to your case)
- Check the account used to access the repository for group membership and read/write access.
- Follow the instructions to implement one of the options detailed on the SVN Authentication Issues page.
The recommended option is to "Specify the username as part of the URL when defining your repository location".
Upvotes: 1