Heim > Fragen und Antworten > Hauptteil
黄舟2017-05-02 09:52:37
在添加远程库的时候使用了https的方式。。所以每次都要用https的方式push到远程库,速度还慢。。
查看使用的传输协议:
git remote -v
重新设置成ssh的方式:
git remote rm origin
git remote add origin git@github.com:username/repository.git
git push -u origin master
阿神2017-05-02 09:52:37
git config --global credential.helper "store"
配置好后在 .gitconfig 文件中可以看到