ssh - can find where git default username is set -
i have been using git command line long time. today tried installing git desktop, along way, there step says current git needs uninstalled. after which, seemed stuck personal git username. when git clone own repo in github, no username password needed. when git clone or git pull client's repo, complains can't find repos's url.
i checked make sure no user.name or user.email exist in git config --global --list
. set global user.name 1 needed client repo, still same result.
ssh -vt git@github.com
shows tries id_rsa
, fails, ends permission denied (publickey)
. checked, , id_rsa
file not there. don't know right way set one.
where can secret setting on macbook supplying default user.name
during git command?
ssh -vt git@github.com
shows tries id_rsa, fails
when git client shell, check $home
refers to: ssh seek public/private keys in $home/.ssh
.
github desktop might use different path $home
, or settings.
Comments
Post a Comment