AWS CodeCommit 不适用于 OSX 上的 HTTPS
AWS CodeCommit does not work with HTTPS on OSX
在关注 https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-unixes.html 之后,我在尝试克隆时遇到以下错误:
git: 'credential-aws' is not a git command. See 'git --help'.
这是我的 .gitconfig 中的内容:
[credential]
helper = aws configure codecommit credential-helper $@
UseHttpPath = true
我在 OSX El Capitan。
问题出在您的 gitconfig 中。改成下面就可以了。
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true
在关注 https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-unixes.html 之后,我在尝试克隆时遇到以下错误:
git: 'credential-aws' is not a git command. See 'git --help'.
这是我的 .gitconfig 中的内容:
[credential]
helper = aws configure codecommit credential-helper $@
UseHttpPath = true
我在 OSX El Capitan。
问题出在您的 gitconfig 中。改成下面就可以了。
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true