• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

Create a Repository in CodeCommit

July 22, 2018

CodeCommit is a version control system hosted in AWS that you can use privately to store and manage your source code, documents or binary files. You can get free (as in beer) unlimited repositories, if you have less than 5 users, and if your storage is less than 50 GB-month, and you have less than 10,000 git requests per month. If you have more than 5 users, it’s $1 a month per user. Still not bad. Here’s CodeCommit pricing.

Create a repository in CodeCommit via the Console or the CLI.

aws codecommit create-repository --repository-name myrepo --repository-description "My repository"

aws codecommit create-repository --repository-name myrepo --repository-description "My repository"

Create in another region.

aws codecommit create-repository --region us-west-2 --repository-name myrepo --repository-description "My repository"

aws codecommit create-repository --region us-west-2 --repository-name myrepo --repository-description "My repository"

Enjoy.

Filed Under: Cloud Tagged With: aws, codecommit, version control

Search This Website

Subscribe Via Email

  • Home
  • About
  • Archives

Copyright © 2023