2.为用户增加codecommi"/>

aws codecommit 代码托管服务使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了aws codecommit 代码托管服务使用相关的知识,希望对你有一定的参考价值。

1.在aws 的IAM 创建用户

技术分享2.为用户增加codecommitfullaccess的权限

技术分享

3.将机器的ssh公钥添加到用户的安全证书

技术分享

这里需要把ssh的密钥id记录一下。克隆代码的时候需要

4.创建codecommit仓库

技术分享

5.使用ssh密钥id 验证 代码仓库是否可连接

[[email protected] ~]# ssh ssh密钥[email protected]
The authenticity of host ‘git-codecommit.us-east-2.amazonaws.com (52.95.20.120)‘ can‘t be established.
RSA key fingerprint is a9:6d:03:ed:08:42:21:be:06:e1:e0:2a:d1:75:31:5e.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘git-codecommit.us-east-2.amazonaws.com,52.95.20.120‘ (RSA) to the list of known hosts.
You have successfully authenticated over SSH. You can use Git to interact with AWS CodeCommit. Interactive shells are not supported.Connection to git-codecommit.us-east-2.amazonaws.com closed by remote host.
Connection to git-codecommit.us-east-2.amazonaws.com closed.

6.克隆代码到本地

[[email protected] ~]# git clone ssh://ssh密钥[email protected]/v1/repos/pngtree  test
Initialized empty Git repository in /root/test/.git/

7.git 的一些常用操作

git add  ./
git commit -m “test”
git push origin master


本文出自 “不抛弃!不放弃” 博客,请务必保留此出处http://thedream.blog.51cto.com/6427769/1907885

以上是关于aws codecommit 代码托管服务使用的主要内容,如果未能解决你的问题,请参考以下文章

AWS攻略——使用CodeCommit托管代码

Inplayable技术分享

Inplayable技术分享

Inplayable技术分享

Inplayable技术分享

是否必须创建 IAM 用户才能使用 AWS CodeCommit?