26

我是亚马逊网络服务领域的新手,我正在为我工​​作的公司实施持续交付。

我按照 AWS 的 [配置 CodeCommit 服务的说明] ( http://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-windows.html#setting-up-https-windows-account )

步骤 1:AWS CodeCommit的初始配置

创建和配置IAM 用户以访问AWS CodeCommit:我创建了一个新的 IAM 用户并为他提供了AWSCodeCommitFullAccess

要安装和配置 AWS CLI

我安装并配置了执行aws configure的凭据。将 AWS 访问密钥 ID、AWS 秘密访问密钥、默认区域名称设置为us-east-1de

第 2 步:安装 Git 我安装了Git For Windows,确保清除了 Enable Git Credential Manager 选项。

第 3 步:设置凭据帮助程序

git config --global credential.helper "!aws codecommit credential-helper $@"
git config --global credential.UseHttpPath true

执行:

git config --global --edit

我的配置是:

[http]
  sslVerify = false
[credential]<br> 
  helper = "aws codecommit list-repositories codecommit credential-helper "
  UseHttpPath = true

步骤 4:连接到AWS CodeCommit控制台并克隆存储库

    $ git clone https://git-codecommit.us-east-1.amazonaws.com/v1/repos/teste-git-to-s3<br>
    Cloning into 'teste-git-to-s3'...<br>
    git: 'credential-aws' is not a git command. See 'git --help'.<br>
    Username for 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/teste-git-to-s3': Lucas<br>
    fatal: unable to access 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/teste-git-to-s3/': The requested URL returned error: 403

在寻找 AWS 故障排除时,我发现:对 AWS CodeCommit进行故障排除,但我无法解决。

如何解决?

4

3 回答 3

27

我认为问题出在您的 .gitconfig 文件中。将其更改为以下,它应该可以工作。

[credential]    
    helper = !aws codecommit credential-helper $@ 
    UseHttpPath = true  

顺便说一句,如果您使用 Bash 模拟器而不是 Windows 命令行,则必须使用单引号而不是双引号。

如果这不起作用,请告诉我。

于 2016-09-15T23:30:47.917 回答
0

如果您使用的是cygwin,则在创建存储库后,单击连接信息按钮,选择 linux 而不是 windows,它适用于我的。

于 2016-11-03T19:07:30.300 回答
0

我在使用 Python 3.8.x 时遇到了这个问题 - 请确保您使用的是 Python 3.7.x,如文档中所示

于 2021-05-06T07:53:24.127 回答