Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Server Admin
Guides
- gitattributes
- Command-line interface conventions
- Everyday Git
- Frequently Asked Questions (FAQ)
- Glossary
- Hooks
- gitignore
- gitmodules
- Revisions
- Submodules
- Tutorial
- Workflows
- All guides...
Administration
Plumbing Commands
- 2.43.0 11/20/23
- 2.27.1 → 2.42.1 no changes
- 2.27.0 06/01/20
描述
Note
|
使用这个助手会将你的密码未加密地存储在磁盘上,只受文件系统权限的保护。如果这不是一个可接受的安全权衡,请尝试 git-credential-cache[1],或者找一个能与你的操作系统提供的安全存储整合的助手。 |
该命令在磁盘上无限期地存储凭证,供未来的 Git 程序使用。
你可能不想直接调用这个命令;它是作为 git 其他部分的凭证助手来使用的。参见 gitcredentials[7] 或下面的 EXAMPLES
。
选项
- --file=<路径>
-
Use
<path>
to lookup and store credentials. The file will have its filesystem permissions set to prevent other users on the system from reading it, but it will not be encrypted or otherwise protected. If not specified, credentials will be searched for from~/.git-credentials
and$XDG_CONFIG_HOME/git/credentials
, and credentials will be written to~/.git-credentials
if it exists, or$XDG_CONFIG_HOME/git/credentials
if it exists and the former does not. See also 文件.
文件
如果没有用 --file
明确设置,有两个文件,git-credential-store 将按照优先顺序搜索证书:
对于凭证查询,文件按上述顺序读取,发现的第一个匹配凭证优先于在列表后面的文件中发现的凭证。
凭证存储将默认写到列表中的第一个现有文件。如果这些文件都不存在,~/.git-credentials
将被创建并写入。
擦除证书时,匹配的证书将从所有文件中擦除。
实例
这个助手的意义在于减少你必须输入用户名或密码的次数。比如说:
$ 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]
存储格式
.git-credentials
文件是以明文存储的。每个凭证都以 URL 的形式存储在自己的一行中,比如:
https://user:pass@example.com
文件中不允许有其他类型的行(如空行或注释行),尽管有些行可能被默默地忽略了。不要用编辑器查看或编辑该文件。
当 Git 需要对某个特定的 URL 上下文进行认证时,credential-store 会将该上下文视为一种模式,与凭证文件中的每个条目进行匹配。 如果协议、主机名和用户名(如果我们已经有了)相匹配,那么密码就会返回给 Git。更多信息见 gitcredentials[7] 中关于配置的讨论。
GIT
属于 git[1] 文档