git integration problem

Hi,

A couple of months ago this question was posed:

http://support.backendless.com/t/git-cloning-question

and the answer was that one should be able to use the form:

$ git clone https://git.backendless.com//.git

and be prompted for username and password. I’m finding this though:

$ git clone https://git.backendless.com//.git
Cloning into ‘’…
fatal: unable to access ‘http://git.backendless.com//.git/’: The requested URL returned error: 403

Now I do have set on my machine:

$ git config --global -l
user.name=<User Name>
user.email=<User Email>

where the <User Name> and <User Email> don’t match the developer name and email address on the account and app that I’m trying to clone. But I do have the developer name and password for the account that I could supply when prompted. Am I doing something wrong?

Thanks.

I found what appears to be the problem. I’m on OS X and this StackOverflow question/answer explains exactly what I found:

http://stackoverflow.com/questions/16052602/disable-git-credential-osxkeychain

In this case, the system “credential.helper” was set to osxkeychain. It seems there was some problem with the Backendless credentials in the Keychain. Using the command they give with “sudo” solved the problem (if one prefers to not have osxkeychain manage credentials).

$ sudo git config --system --unset credential.helper