利用git credential免密认证git http仓库

1. 命令

在git仓库目录下执行

1
2
3
git config user.name xxx
git config user.email xxx@xxx.com
git config credential.helper store

2. 缺点

密码将会以明文形式存储在~/.git-credentials文件中,不安全。