git免密
# 配置
使用 git credential.helper 插件配置 http 请求用户名密码:
git config --global credential.helper store -file=.git_credentails
echo 'http://用户名:密码@icode.baoshiyun.com' > ~/.git-credentials
1
2
2
配置后 git 请求 github
时会自动从 ~/.git-credentials
这个文件中读取, 不需要再次输入用户名密码
上次更新: 2021/02/20, 19:26:07