git全局设置账号及ssh连接公私钥获取

全局设置账号、邮箱、密码

git config --global user.name " "
git config --global user.email " "
git config --global user.password " "

仓库为https地址时,再次拉取提交代码都需要重新输入账户、密码,可添加一下全局设置

git config --global credential.helper store

获取公、私钥

ssh-keygen -t -rsa -C "邮箱账号"   // ""内输入您的邮箱账号
cat ~/.ssh/id_rsa.pub
cat ~/.ssh/id_rsa

你可能感兴趣的:(git,ssh,运维)