英文 ▾
主题 ▾
最新版本 ▾ git-credential-cache 最后更新于 2.43.0
git-credential-cache 手册中的更改
设置和配置
获取和创建项目
基本快照
分支和合并
共享和更新项目
检查和比较
补丁
调试
电子邮件
外部系统
服务器管理
指南
管理
底层命令
- 2.43.1 → 2.47.0 无变化
- 2.43.0 11/20/23
- 2.40.1 → 2.42.3 无变化
- 2.40.0 03/12/23
- 2.39.1 → 2.39.5 无变化
- 2.39.0 12/12/22
- 2.18.1 → 2.38.5 无变化
- 2.18.0 06/21/18
- 2.14.6 → 2.17.6 无变化
- 2.13.7 05/22/18
- 2.9.5 → 2.12.5 无变化
- 2.8.6 07/30/17
- 2.1.4 → 2.7.6 无变化
- 2.0.5 12/17/14
描述
此命令缓存凭据以供将来 Git 程序使用。存储的凭据保存在缓存守护进程的内存中(而不是写入文件),并在可配置的超时后被遗忘。如果缓存守护进程死亡(例如,系统重新启动),凭据会更快地被遗忘。缓存可以通过 Unix 域套接字访问,通过文件系统权限限制为当前用户。
您可能不希望直接调用此命令;它旨在用作 Git 其他部分的凭据助手。请参阅 gitcredentials[7] 或下面的 示例
。
示例
此助手的目的是减少您必须输入用户名或密码的次数。例如
$ git config credential.helper cache $ git push http://example.com/repo.git Username: <type your username> Password: <type your password> [work for 5 more minutes] $ git push http://example.com/repo.git [your credentials are used automatically]
您可以通过 credential.helper 配置变量提供选项(此示例将缓存时间增加到 1 小时)
$ git config credential.helper 'cache --timeout=3600'
GIT
git[1] 套件的一部分