586
questions
0
votes
0
answers
7
views
Show AWS codecommit contribution status in github
Is there a way to show AWS codecommit contributions like #of commit pull requests in my github profile.?
0
votes
0
answers
42
views
Codecommit - cannot create a repository
Why am I unable to create a repository in CodeCommit?
when I am creating a new repository in AWS codecommit it's throwing this error...
"Create Repository request is not allowed because there is ...
0
votes
1
answer
48
views
AWS IAM-Policy to restrict only remote repository/branch deletion
Iam trying to write an IAM policy to restrict user on deleting branch/repo using below.But could see delete operation of branch is executed using command git push origin --delete test-delete-branch .
...
0
votes
0
answers
34
views
How to create file in AWS codecommit?
I am creating a project. This project will log payment details when a payment is created.
import * as fs from 'fs/promises';
import * as path from 'path';
app.use('/files', async (req, res) => {
...
-1
votes
1
answer
54
views
git push --mirror failing
My team uses AWS CodeCommit and my company provides a GitHub service hosted internally.
We keep a 'mirror' of a repo in CodeCommit in GitHub. That is, the repo in GitHub is only updated via pushes ...
0
votes
0
answers
43
views
SourceTree and AWS Codecommit SSO connection
I have a project on AWS Codecommit and i use Jira SourceTree as a Git ui.
The company that i work give me an sso connection login but no iam user anymore (like before it worked).
Is there any solution ...
0
votes
0
answers
47
views
Ubuntu - cron- running script to sync git
I'm using Logseq to take notes and I set up a repo on AWS CodeCommit to backup/sync the graph.
I wrote an sh script that syncs the graph folder: it pulls new commits, adds modified files to the stage ...
4
votes
1
answer
4k
views
CodeCommit Create Repo Error: CreateRepository request is not allowed because there is no existing repository in this AWS account or AWS Organization
Attempting to create first repo in AWS CodeCommit and get the same error whether from console or CLI:
Console:
CreateRepository request is not allowed because there is no existing repository in this ...
0
votes
0
answers
17
views
Error Deploying Lambda Function in Image Mode Using AWS CodeCommit and CodeBuild
I am trying to create a lambda function with the help of AWS CodeCommit and AWS CodeBuild. I tried this in zip mode, but it exceeds the zip threshold set by the lambda function (50MB). So now I'm ...
0
votes
0
answers
21
views
Code commit shows conflicts when try o merge dev branch to stg branch
I am trying to merge Dev branch into Staging branch using Visual Studio but it shows me conflicts. When I see the list of conflicts it shows me dlls, and sever files checked out which were not even ...
0
votes
1
answer
51
views
cdk: use aws_iam.ArnPrincipal to grant repository
I want to enable (cross-account) access to a repository.
But my statement seems not to have any effect.
repository.grant_pull(aws_iam.ArnPrincipal('arn:aws:iam::123456789:role/technical-role'))
I ...
0
votes
1
answer
52
views
CodePipeine cannot fetch the source from CodeCommit
I have this error when codepipline trying to fetch source from codecommit
The service role or action role doesn’t have the permissions required to access the AWS CodeCommit repository named defon-...
0
votes
0
answers
46
views
Implementing a Scheduled Code Scan on AWS CodeCommit with Snyk
I am currently using AWS CodeCommit for my version control system and Snyk for scanning my codebase for vulnerabilities. I am interested in setting up a weekly scheduled scan of my codebase with Snyk.
...
0
votes
0
answers
37
views
AWS Codepipeline with multiple build actions
I have a single repository (myRepo) in AWS CodeCommit that has two branches (main/dev). I have an AWS CodePipeline setup with two Source Actions and two Build Actions. Source Action A is pointed at ...
0
votes
2
answers
106
views
Azure DevOps classic pipelines path filter workaround for "Other Git" repo
I am in the process of setting up a build pipeline that is connected to an AWS CodeCommit repo requiring the "Other Git" option to be selected and configuring the pipeline through the ...