I've got a windows 7 setup behind a corporate proxy and cntlm to avoid auth problems. Unfortunately, every time I do push a repo:
$ git push --progress --porcelain origin refs/heads/master:master
I've got the following errors:
remote: Anonymous access to oats4goats/EloquentJS.git denied.
fatal: Authentication failed for 'https://github.com/oats4goats/EloquentJS.git/'"
although it prompts me the credentials and I explicitly specify my username and pass:
Username for 'https://github.com': oats4goats
Password for 'https://oats4goats@github.com': ************
Moreover when I try to use credential-helper:
git config credential.helper store
it purges the .git-credentials file content instead of adding my credentials there. For me it looks like it doesn't take a user's input of the username/pass, but I don't know why...
At the same time git clone works just fine.
Thanks a lot for your help!