简体中文 ▾
Localized versions of git-credential-cache manual
Topics ▾
Email
Latest version
▾
git-credential-cache last updated in 2.43.0
Changes in the git-credential-cache manual
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.40.1 → 2.42.3 no changes
- 2.40.0 03/12/23
- 2.39.1 → 2.39.5 no changes
- 2.39.0 12/12/22
- 2.18.1 → 2.38.5 no changes
- 2.18.0 06/21/18
- 2.14.6 → 2.17.6 no changes
- 2.13.7 05/22/18
- 2.9.5 → 2.12.5 no changes
- 2.8.6 07/30/17
- 2.1.4 → 2.7.6 no changes
- 2.0.5 12/17/14
描述
该命令会缓存凭证,供未来的 Git 程序使用。 存储的凭据保存在 cache-daemon 进程的内存中(而不是写入文件),并在可配置的超时后被遗忘。如果 cache-daemon 死机,例如系统重启,证书会更快被遗忘。缓存可通过 Unix 域套接字访问,并通过文件系统权限限制为当前用户访问。
你可能不想直接调用这条命令;它的目的是作为 Git 其他部分的凭证助手。请参阅 gitcredentials[7] 或下面的 例子
。
实例
这个助手的意义在于减少你必须输入用户名或密码的次数。比如说:
$ git config credential.helper cache $ git push http://example.com/repo.git Username: <输入你的用户名> Password: <输入你的密码> [再工作 5 分钟] $ git push http://example.com/repo.git [自动使用您的证书]
您可以通过 credential.helper 配置变量提供选项(本例将缓存时间增加到 1 小时):
$ git config credential.helper 'cache --timeout=3600'
GIT
属于 git[1] 文档