【Git】credential.helper

目录

一. 问题

二. 记录

2.1 删除

2.2 存储 Credentials

2.2.1 缓存

2.2.2 文件

2.3 显示

三. 参考


一. 问题

        自从安全部门把SSH 端口给干掉后,就只能https 了,次哦,每次提交都搞得比较啰嗦和麻烦,有时候提着提着就忘记咋操作了;

        由于有多个仓库,本来想统一设置,后来发现各个代码库要求还不太一样,一个个得定制化设置好了;

        好记性不如烂笔头,记下来后续复制,粘贴吧;

二. 记录

2.1 删除

删除本地仓库配置得密钥:

$ git config --local --unset credential.helper

2.2 存储 Credentials

2.2.1 缓存

$ git config credential.helper 'cache --timeout=300'

2.2.2 文件

$ git config --local credential.helper store

2.3 显示

$ git config --show-origin --get credential.helper

        此时,配置后得信息,在 C:\Users\XXX(您得用户名)\.git-credentials 路径文件中就应该能看到配置得明文信息;

三. 参考

  1. Git - git-config Documentation
  2. Git - gitcredentials Documentation
  3. Git - git-credential-cache Documentation
  4. Git - git-credential-store Documentation

你可能感兴趣的:(Git,git)