Published Question
every time I run "git pull origin master" I am prompted for my github username and password. How to automate that?
I have run all the SSH steps in the terminal of my droplet:
ssh-keygen
ssh-add
goto github. new ssh k...
Accepted Answer:
Hello,
My guess would be that you've got your Git source set to HTTP rather than SSH in your Git Config.
To change that edit your Git Config, it is stored at:
.git/config
Look for the [remote "origin"] line and upd...
2
•
•
By
SteveRichter
Git