git免验证
2019-02-17
2019-02-17
法一
设置全局
生成ssh key
ssh-keygen -t rsa -C "1197225628@qq.com" |
github.com$\to$
Settings
$\to$SSH and GPG keys
$\to$New SSH key
,将./.ssh/id_rsa.pub
中的文本复制过去检查
ssh -T git@github.com |
- 不知道怎么办了(修改remote为ssh?)
法二
git config --global credential.helper store |
取消自动保存(方便多个账号)
git config --global credential.helper "" |