git初始化设置

By 水木神風 at 2021-04-21 • 0人收藏 • 1494人看过

git设置本地账号

git config --global user.name "godwind"

git config --global user.email "godwind@yeah.net"

生成公钥证书

ssh-keygen -t rsa

查看证书

cat ~/.ssh/id_rsa.pub

设置保存用户名密码

git config --global credential.helper store

git config --global -l


登录后方可回帖