我以前使用AWS CodeCommit并且需要利用GIT凭证助手。现在,我想删除它,但我不知道要删除什么。以下是凭证助手的配置:
$ git config credential.helper
!aws codecommit credential-helper $@
credential.helper的默认配置是什么?
答案 0 :(得分:2)
虽然不同版本的git默认带有不同的帮助程序,但您可以使用不同的加载程序。
一些例子是:
git config --global credential.helper store # keeps credentials in a text file
git config --global credential.helper wincred # on git for Windows - keeps credentials in Windows credential manager
git config --global credential.helper manager # also git for Windows - Microsoft's own helper