Git可以将用户名,密码和仓库链接保存在硬盘中,而不用在每次push的时候都输入密码。
保存密码到硬盘一条命令就可以
$ git config credential.helper store
当git push的时候输入一次用户名和密码就会被记录
参考
$ man git | grep -C 5 password
$ man git-credential-store
这样保存的密码是明文的,保存在用户目录~的.git-credentials文件中
$ file ~/.git-credentials
$ cat ~/.git-credentials
引用
EXAMPLES
The point of this helper is to reduce the number of times you must type your username or password. For example:
$ git config credential.helper store $ git push http://example.com/repo.git Username: <type your username> Password: <type your password> [several days later] $ git push http://example.com/repo.git [your credentials are used automatically]The .git-credentials file is stored in plaintext. Each credential is stored on its own line as a URL like:
本文介绍如何使用Git命令将用户名及密码存储在本地硬盘上,从而避免每次推送代码时重复输入密码。通过设置`credential.helper`为`store`,可以在`.git-credentials`文件中保存凭证信息,提高开发效率。

1459

被折叠的 条评论
为什么被折叠?



