Git凭证存储在Centos6上不起作用

时间:2016-12-07 09:52:48

标签: git gitlab credentials centos6

在我的服务器Centos6上,命令“git config --global credential.helper store”,没有任何效果。 变量正确设置,确实运行“git config --global credential.helper”我收到“store”,我没有本地配置。

但每次拉动或推动时都会提示输入密码。

我怀疑这个问题是由gitlab安装引起的,但是不确定。

谢谢。

1 个答案:

答案 0 :(得分:0)

官方Git网站上的信息可能会有所帮助。它描述了一些不同的凭证帮助程序选项,包括cachestore。您可能需要为store帮助程序定义路径以保留其保存的凭据。例如,git config --global credential.helper 'store --file ~/.my-credentials'

https://git-scm.com/book/en/v2/Git-Tools-Credential-Storage