无法使用 URL 内的用户名密码访问 CodeCommit 存储库
Unable to access CodeCommit repo using username password inside URL
我想在克隆 URL 中使用用户名密码克隆 codecommit 存储库。我正在使用以下
URL:
git clone https://username:password@git-codecommit.eu-west-1.amazonaws.com/v1/repos/sample-repo
但是我收到这个错误:
fatal: unable to access 'https://username:password@git-codecommit.eu-west-1.amazonaws.com/v1/repos/sample-repo/' : Port number ended with 'c'
虽然此方法适用于另一个帐户没有问题,但凭据是否存在任何权限问题。
我从密码中删除了特殊字符 / 并将其替换为解决了我的问题的转义字符。
Escape Character for / is %2F
我想在克隆 URL 中使用用户名密码克隆 codecommit 存储库。我正在使用以下
URL:
git clone https://username:password@git-codecommit.eu-west-1.amazonaws.com/v1/repos/sample-repo
但是我收到这个错误:
fatal: unable to access 'https://username:password@git-codecommit.eu-west-1.amazonaws.com/v1/repos/sample-repo/' : Port number ended with 'c'
虽然此方法适用于另一个帐户没有问题,但凭据是否存在任何权限问题。
我从密码中删除了特殊字符 / 并将其替换为解决了我的问题的转义字符。
Escape Character for / is %2F