git免密码clone

前端之家收集整理的这篇文章主要介绍了git免密码clone前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

------------(操作)
1、cd ~
2、touch .git-credentials
3、vim .git-credentials
4、https://{username}:{password}@github.com

-------------(执行)
终端输入
git config --global credential.helper store

------------(验证)
打开~/.gitconfig文件,会发现多了一项:
[credential]
helper = store

原文链接:https://www.f2er.com/git/411498.html

猜你在找的Git相关文章