当我运行以下命令时,我得到:
git config --global --edit
显示包含设置指南中的行的编辑文件
aws configure
显示出了我所期望看到的按键尾端。
然而,我收到以下错误:
C:\Path\to\repo>git push https://git-codecommit.us-east-1.amazonaws.com/v1/repos/myRepo --all
fatal: unable to access 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/myRepo/': The requested URL returned error: 403
C:\Path\to\repo>git clone https://git-codecommit.us-east-1.amazonaws.com/v1/repos/myRepo myRepo
Cloning into 'myRepo'...
fatal: unable to access 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/myRepo/': The requested URL returned error: 403
编辑:我应该补充一点,我创建了一个用户,并将他分配到一个拥有完全访问权限的组(?)AWSCodeCommit 策略 (AWSCodeCommitPowerUse 和 AWSCodeCommitFullAccess)。我为该用户创建了一个访问密钥,并且该密钥也已输入到凭证助手中。
我错过了什么?