赞
踩
目录
每次 git clone 时都需要输入账号、密码。
配置全局开机认证信息保存:
git config --global credential.helper store
可以永久保存。除非用命令解除。
然后在输入账号密码之后,后面每次克隆不需要输入。
谨记:密码是gitHub或gitlab上的访问令牌。
git config --global credential.helper "store"
git config --global color.ui "auto"
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
git config --global https.sslVerify "true"
git config --global user.name "开启了权限的账号"
git config --global user.email "开启了权限的账号对应的邮箱"
git config --global init.defaultBranch "master"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。