I'm using terminal for mac and running the line
git push origin master
It asks me for my github.com username and password every time,
is there any way to have it automatically use my credentials?
I keep getting the error
error: The requested URL returned error: 403 while accessing
https://github.com/atheycreek/churchdeploy.git/info/refs
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = https://github.com/atheycreek/churchdeploy.git
So I changed it to
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git:github.com/atheycreek/churchdeploy.git
now I get..
kirkstrobeck:churchdeploy kirkstrobeck$ git push origin master
ssh: Could not resolve hostname git: nodename nor servname provided, or not known
fatal: The remote end hung up unexpectedly
I changed it to
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com/atheycreek/churchdeploy.git
and now i get ..
kirkstrobeck:churchdeploy kirkstrobeck$ git push origin master
fatal: 'git@github.com/atheycreek/churchdeploy.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly