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
69
votes
17 answers

running git clone against AWS CodeCommits gets me a 403 error

My local laptop is a Mac. The ssh key is configured properly. This is the content of ~/.ssh/config Host barthea Hostname git-codecommit.us-east-1.amazonaws.com User AVVVVVVVVVVVVVVVVVQ IdentityFile ~/.ssh/aws-aws.pem Running ssh barthea gets…
Vietnhi Phuvan
  • 2,704
  • 2
  • 25
  • 25
53
votes
8 answers

Unable to delete cfn stack, role is invalid or cannot be assumed

I'm new to aws cloudformation; I'm wondering if anybody knows of a way to force delete a stack when it just won't delete. It fails with this error: Failed to delete stack: Role arn:aws:iam::role/CloudFormationRole-NestedCFN-CodePipeline is invalid…
27
votes
3 answers

AWS CodeCommit Error: git: 'credential-aws' is not a git command

I am new to Amazon Web Services world, and I am implementing Continuous Delivery to the company I work for. I followed AWS's [instructions to configure CodeCommit Service]…
25
votes
0 answers

Error making request to CodeCommit: Could not retrieve

I have pushed my last work to the repository, however, when I try to deploy, I get this error: $ eb deploy myapp -v Password: INFO: Deploying code to myapp in region us-east-1 INFO: Getting version label from git with git-describe INFO: Pushing…
simo
  • 23,342
  • 38
  • 121
  • 218
25
votes
9 answers

Can't access AWS CodeCommit with SSH

Having an incredibly difficult time figuring out how to get AWS CodeCommit to work with standard SSH authentication. Seen another topic like this but no answer and I'm not allowed to comment yet. This is on Windows using Git Bash. Repro…
Dan
  • 293
  • 1
  • 3
  • 8
24
votes
8 answers

AWS CodeCommit - fatal: repository 'https://git-codecommit.us-east-1..' not found

I have an AWS account. I created a repository in us-east-1 region. When I try to access it from my Mac's terminal I get an error fatal: repository 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/demo/' not found. I was able to access this…
ujjwal garg
  • 711
  • 3
  • 8
  • 18
16
votes
3 answers

AWS Codepipeline with a Codecommit targetsource repository from another account

Is it possible to create a codepipeline that has a target source of a CodeCommit Repository in another account?
Alex Nelson
  • 1,182
  • 9
  • 19
15
votes
2 answers

AWS Codecommit Git Clone error : fatal: unable to find remote helper for 'codecommit'

I am trying to clone a repository from our private codecommit, I have necessary access, but whenever i try to clone locally, I am getting the error: git clone codecommit::us-east-1://my-repo-name fatal: unable to find remote helper for…
gigz
  • 942
  • 2
  • 9
  • 26
15
votes
2 answers

AWS CodeCommit: Repository Notifications vs Repository Triggers

Notifications: https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-repository-email.html Triggers: https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-notify.html The official document states that for CodeCommit repository…
15
votes
3 answers

Pull Requests in CodeCommit

Is there a similar concept or workaround for Pull Requests inside AWS CodeCommit? I'm trying to implement CI using a CodeCommit repository and help us avoid broken head in our repository (master branch should always compile and run all tests…
Acuariano
  • 498
  • 3
  • 11
14
votes
2 answers

"Unable to negotiate" with AWS CodeCommit: "no matching host key type found"

I'm trying to connect to AWS CodeCommit with SSH. I've followed every step in this guide: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-ssh-windows.html#setting-up-ssh-windows-install-git but when I get to where I need to run…
Austin Grant
  • 391
  • 3
  • 7
13
votes
3 answers

AWS CodePipeline, build failed & getting error as YAML_FILE_ERROR M

I'm new to AWS CodePipeline and never had past experience with any continuous integration tool like Jenkins, etc. I have created a new AWS CodePipeline as AWS CodeCommit (Code repository) -> CodeBuild (not docker, and environment is NodeJS 7)-> AWS…
11
votes
1 answer

AWS Codecommit Markdown embedded pictures images

We are using AWS Codecommit for our projects documentation in Markdown. I would like to know how it is possible to create a markdown link that allows to display embedded images (to be visualized while in CodeCommit). The images are also in…
dotmindlabs
  • 778
  • 1
  • 12
  • 35
11
votes
5 answers

AWS CodePipeline build lacks Git history

Context: I have a CodePipeline set up that uses CodeCommit and CodeBuild as its source and build phases. My build includes a plugin (com.zoltu.git-versioning) that uses the Git commit history to dynamically create a build version number. Issue: This…
11
votes
3 answers

CodeDeploy to S3

I have a site in a S3 bucket, configured for web access, for which I run an aws s3 sync command every time I push on a specific git repository (I'm using Gitlab at the moment). So if I push to stable branch, a Gitlab runner performs the npm start…
1
2 3
37 38