解决使用git clone和push时每次都需要输入用户名和密码的烦恼
日期: 2020-07-06 分类: 跨站数据 377次阅读
1. SSH免密方式
使用git bash ssh-keygen或puttygen.exe生成公钥。
2. 配置全局开机存储认证信息
下面命令会将下次弹框的账号和密码保存起来,永久使用。
git config --global credential.helper store如果想要清除该账号和密码,使用如下命令:
git config --global credential.helper reset想要临时存储(默认15min),使用如下命令
git config --global credential.helper cachewindows下的临时存储命令不是上面的,应该使用下面的命令
git config --global credential.helper wincred
3. 地址中携带用户信息
在https链接里加入username:password。
git remote add origin https://username:password@xxx.git
除特别声明,本站所有文章均为原创,如需转载请以超级链接形式注明出处:SmartCat's Blog
精华推荐