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.1 → 2.47.0 no changes
- 2.43.0 11/20/23
- 2.27.1 → 2.42.3 no changes
- 2.27.0 06/01/20
- 2.18.1 → 2.26.3 no changes
- 2.18.0 06/21/18
- 2.10.5 → 2.17.6 no changes
- 2.9.5 07/30/17
- 2.5.6 → 2.8.6 no changes
- 2.4.12 05/05/17
- 2.2.3 → 2.3.10 no changes
- 2.1.4 12/17/14
- 2.0.5 12/17/14
描述
Note
|
使用这个助手会将你的密码未加密地存储在磁盘上,只受文件系统权限的保护。如果这不是一个可接受的安全权衡,请尝试 git-credential-cache[1],或者找一个能与你的操作系统提供的安全存储整合的助手。 |
该命令在磁盘上无限期地存储凭证,供未来的 Git 程序使用。
你可能不想直接调用这个命令;它是作为 git 其他部分的凭证助手来使用的。参见 gitcredentials[7] 或下面的 EXAMPLES
。
选项
- --file=<路径>
-
使用
<路径>
来查询和存储证书。该文件将设置其文件系统权限,以防止系统中的其他用户读取它,但不会被加密或其他保护。如果没有指定,将从~/.git-credentials
和$XDG_CONFIG_HOME/git/credentials
中搜索证书,如果证书存在,将被写入~/.git-credentials
,如果证书存在而前者不存在,则写入$XDG_CONFIG_HOME/git/credentials
。参见 文件。
文件
如果没有用 --file
明确设置,有两个文件,git-credential-store 将按照优先顺序搜索证书:
对于凭证查询,文件按上述顺序读取,发现的第一个匹配凭证优先于在列表后面的文件中发现的凭证。
凭证存储将默认写到列表中的第一个现有文件。如果这些文件都不存在,~/.git-credentials
将被创建并写入。
擦除证书时,匹配的证书将从所有文件中擦除。
实例
这个助手的意义在于减少你必须输入用户名或密码的次数。比如说:
$ git config credential.helper store $ git push http://example.com/repo.git Username: <输入您的用户名> Password: <输入密码> [几天后] $ git push http://example.com/repo.git [自动使用您的证书]
存储格式
.git-credentials
文件是以明文存储的。每个凭证都以 URL 的形式存储在自己的一行中,比如:
https://user:pass@example.com
文件中不允许有其他类型的行(如空行或注释行),尽管有些行可能被默默地忽略了。不要用编辑器查看或编辑该文件。
当 Git 需要对某个特定的 URL 上下文进行认证时,credential-store 会将该上下文视为一种模式,与凭证文件中的每个条目进行匹配。 如果协议、主机名和用户名(如果我们已经有了)相匹配,那么密码就会返回给 Git。更多信息见 gitcredentials[7] 中关于配置的讨论。
GIT
属于 git[1] 文档