在关注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。
答案 0 :(得分:1)
问题出在您的gitconfig中。将其更改为下方,它将起作用。
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true