Amazon CodeCommit 凭证助手 - 找不到命令
Amazon CodeCommit credential helper - command not found
我有一个 CodeCommit 存储库,我正尝试从 Windows 7.
的命令行连接
我的意图是使用 aws configure / aws credential helper 方法,因为在这种情况下,我更喜欢使用用户名/密码。
尝试任何 git 操作时,我得到:
aws codecommit credential-helper $@ get: aws: command not found
然后我可以使用用户名和密码,但这会使使用 aws configure 设置访问密钥的意义无效。
我的 .gitconfig 文件的凭据部分如下所示:
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true
看起来 git 无法访问 aws.cmd 但它的完整路径在系统和用户路径环境设置中。
有什么想法吗?
似乎 windows 的 AWS CLI 最近更新可能删除了一些东西。
你能试试这个作为解决方法吗?
[credential]
helper = !'C:\Program Files\Amazon\AWSCLI\bin\aws.cmd' codecommit credential-helper $@
UseHttpPath = true
我有一个 CodeCommit 存储库,我正尝试从 Windows 7.
的命令行连接我的意图是使用 aws configure / aws credential helper 方法,因为在这种情况下,我更喜欢使用用户名/密码。
尝试任何 git 操作时,我得到:
aws codecommit credential-helper $@ get: aws: command not found
然后我可以使用用户名和密码,但这会使使用 aws configure 设置访问密钥的意义无效。
我的 .gitconfig 文件的凭据部分如下所示:
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true
看起来 git 无法访问 aws.cmd 但它的完整路径在系统和用户路径环境设置中。
有什么想法吗?
似乎 windows 的 AWS CLI 最近更新可能删除了一些东西。
你能试试这个作为解决方法吗?
[credential]
helper = !'C:\Program Files\Amazon\AWSCLI\bin\aws.cmd' codecommit credential-helper $@
UseHttpPath = true