I created a git repo via the github website's "new button". Then I used git bash to set up my local repo and tried to pull my remote repo (it had the default README) but got an "access denied error", the same one seen in this question: Cannot push to git repository - permission denied
I followed https://help.github.com/articles/set-up-git#platform-windows, even reopened a new git bash session but I still get access errors on my remote repo. I chmod 777
on my local repo so it's not a local problem either.
https://github.com/new
to create my new remote repo.- Opened git bash on my win7 computer and executed the following commands:
git init
in project directorygit add .
to recursively add all project filesgit commit -am "commit message"
git remote add origin https://...
produces "fatal: remote origin already exists".git pull origin master
produces access denied error. I tried step 4 first with ssh, now I'm trying to use https.