Questions tagged [aws-codecommit]

AWS CodeCommit is a fully-managed source control service that makes it easy for companies to host secure and highly scalable private Git repositories.

AWS CodeCommit is a fully-managed source control service that makes it easy for companies to host secure and highly scalable private Git repositories. CodeCommit eliminates the need to operate your own source control system or worry about scaling its infrastructure. You can use CodeCommit to securely store anything from source code to binaries, and it works seamlessly with your existing Git tools.

569 questions
3
votes
0 answers

I can't clone repository with AWS CodeCommit. What does it mean?

Although all permissions are already set, when I try to make the "git clone" from a repository in CodeCommit I get the following message: fatal: unable to access 'NAME_OF_REPOSITORY': gnutls_handshake() failed: Illegal parameter This only happens…
claudioz
  • 1,121
  • 4
  • 14
  • 25
3
votes
3 answers

AWS CodeCommit - Can clone/pull but can't push (SSH)

I have followed the documented steps to create and clone a CodeCommit repository (as per The AWS documentation). I have also verified that I am using the correct private and public keys (as per this answer). My ssh config file is configured…
dansalias
  • 737
  • 6
  • 11
3
votes
2 answers

How to set up custom subdomain mapping to aws codecommit?

Say, I own mydomain.com and I also host this domain in Route 53. I want to set up a subdomain, say, git.mydomain.com pointing to codecommit host. For example, git.mydomain.com => git-codecommit.us-west-2.amazonaws.com I created a CNAME record in…
jlai
  • 909
  • 1
  • 10
  • 17
3
votes
1 answer

Can I use CodeStar's deployment infrastructure with an existing CodeCommit repo?

CodeStar seems to consist of two parts a way to easily generate several related resources and a CodeCommit repo for managing a project and a mechanism for automatically deploying CodeCommit code to run on specific AWS services. Is there a way to…
orome
  • 45,163
  • 57
  • 202
  • 418
3
votes
1 answer

Register an AWS GIT code push event in Exact Online ERP

When a developer checks in code through a GIT push to AWS codecommit, I want to register an event in our ERP package Exact Online. This allows a project manager to review from within the ERP package the commits. AWS Codecommit only supports triggers…
Guido Leenders
  • 4,232
  • 1
  • 23
  • 43
3
votes
0 answers

How to move git project from AWS CodeCommit to BitBucket?

I'm trying to move a project repository from AWS CodeCommit to BitBucket by using git remote set-url origin git@bitbucket.org:******/********.git to change the repository and then push the code to bitBucket repository but AWS CodeCommit not…
Sovan Jana
  • 83
  • 2
  • 6
3
votes
2 answers

Git Keeps Building on my 'known_hosts' File For Every Push

I created a local git repository that I want to push on to both Github and also Amazon's CodeCommit. I set up two remotes and named them accordingly: git remote add github git@github.com:mygit/myrepo.git and git remote add codecommit…
user6536435
3
votes
1 answer

Unable to clone AWS CodeCommit with IAM Role

I have following settings with my ec2 instance, but no luck. And there is a same issue on aws forum but no answer. ~/.gitconfig: [credential] helper = !aws --region us-east-1 codecommit credential-helper $@ UseHttpPath = true IAM…
cynipe
  • 33
  • 1
  • 5
3
votes
1 answer

Move git project from BitBucket to AWS CodeCommit

Is there a way I can move a project that is on BitBucket to AWS CodeCommit and keep all the commit history?
Tyler Hilbert
  • 2,107
  • 7
  • 35
  • 55
3
votes
2 answers

Getting a list of commits/commit history from AWS CodeCommit repo

Is it possible right now, programatically to get a list of commits on an AWS CodeCommit repository? I understand I can use the git command, but I am trying to get the repository information by using CodeCommit's API. Is that possible, or des the…
chrisrhyno2003
  • 3,906
  • 8
  • 53
  • 102
3
votes
1 answer

XCode Push to AWS CodeCommit -> Unknown Error Occurred

I have set up a git repository using AWS CodeCommit. I can push, pull, etc from the terminal with success. I can also pull in Xcode with success. I am using SSH for the protocol. When I try to push, Xcode presents a prompt saying "An unknown…
iJeep
  • 989
  • 1
  • 10
  • 28
2
votes
0 answers

Go.mod fails to fetch private repo from AWS CodeCommit as part of Gitlab

I am trying to fetch a private repo as a library from AWS CodeCommit in my go.mod file as part of the build stage in my Gitlab pipeline. I am using the the following in the Gitlab stage: before_script: - go env -w…
user2125722
  • 1,289
  • 3
  • 18
  • 29
2
votes
1 answer

Is is possible to generate static Git credentials for HTTPS connection to AWS CodeCommit using only the CLI and not the AWS Console?

I want to generate a git username/password for CodeCommit, I see how to do that from the AWS Web Console , but is there a way to do it via the aws cli?
RubenLaguna
  • 21,435
  • 13
  • 113
  • 151
2
votes
1 answer

AWS SSO, Codecommit (GRC git clone link) and npm install

Single Sign On (SSO) is implemented on AWS account. After running aws sso login, cloning a node a repo using (GRC link) works. However, running npm install in repo results in different errors. ex. package.json ... "dependencies": { ... …
user2517182
  • 1,241
  • 3
  • 15
  • 37
2
votes
0 answers

While mirroring to AWS CodeCommit error Unknown commit

I am tying to push the current branch from azure devOps (using ADO pipeline) to AWS CodeCommit repository. This code CommitCommit repository is freshly created and has no branches/commits/tags in it. I use below commands: First set the remote URL…
Sanjesh M
  • 341
  • 2
  • 6
  • 22