在AWS上配置CodeCommit

来源:互联网 发布:gta4画面优化补丁 编辑:程序博客网 时间:2024/06/05 22:31

CodeCommit的配置相对简单,首先登陆到AWS Console界面,到CodeCommit出,点Create Repository,给个名字,即可完成Repository的创建。然后就是配置客户端连接,这个比较麻烦。

我选用的是HTTPS连接方式和Windows客户端,然后AWS给出连接步骤:


1. Install Git (1.7.9 or later supported) without the Git Credential Manager utility. If you don’t have Git installed, install it now.

https://git-scm.com/download/win

2. Install the AWS CLI.

http://docs.aws.amazon.com/cli/latest/userguide/awscli-install-windows.html#awscli-install-windows-path

    At the command line, type aws configure and configure the AWS CLI with your IAM user access key and secret key.
    Attach an appropriate AWS CodeCommit managed policy to the IAM user. Learn more

Steps to clone your repository

    At the command line, paste the following commands:

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

Clone your repository to your local computer and start working on code:

git clone https://git-codecommit.xxxxxx.amazonaws.com/v1/repos/xxxxxxxxxxx


对于AWS CLI key的配置

aws configure --profile my-test-profile(your profile name)

access key:

secret key:

region: us-east-1 or 2 or others

format: default - press Enter key


如此AWS CLI配完,然后是git:

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


后面输入:git clone https://git-codecommit.xxxxxx.amazonaws.com/v1/repos/xxxxxxxxxxx

提示需要输入Git Credential Manager的用户名和密码

搜索后看到:

If you intend to use HTTPS with the credential helper that is included in the AWS CLI instead of configuring Git credentials for AWS CodeCommit, on the Configuring extra options page, make sure the Enable Git Credential Manager option is cleared.
不知道这个在哪里取消,因此按照:http://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-gc.html,生成对应的用户名和密码来解决。


In the IAM console, in the navigation pane, choose Users, and from the list of users, choose your IAM user.

On the user details page, choose the Security Credentials tab, and in HTTPS Git credentials for AWS CodeCommit, choose Generate.
Generating Git credentials in the IAM console