Day 50: CI/CD pipeline on AWS - Part-1
Today's task: Set up CodeCommit Repository and Clone Locally
Let's get started
Set up GitCredentials in AWS IAM:
Log in to the AWS Management Console and navigate to IAM (Identity and Access Management).

Create or select an IAM user with the necessary permissions for accessing CodeCommit.

Generate Git credentials for the IAM user.
Click on user just created and go to security credentials
scroll down to HTTPS git credentials for AWS CpdeCommit

Click on Generate credentials

Clone the repository from CodeCommit:
In the AWS Management Console, go to the CodeCommit service.

Create a new repository or select an existing one.
Copy the repository's clone URL.

Open your terminal or Git client and navigate to the desired directory where you want to clone the repository.
Run the following command, replacing
<REPO_CLONE_URL>with the URL you copied:
git clone <REPO_CLONE_URL>
it will ask for user name and password. provide HTTPS git credentials which you creted before

You have successfully set up a code repository on CodeCommit and cloned it on your local machine.
Task-02 : Add a new file from local and commit to your local branch

Push the local changes to CodeCommit repository.

That was it for today ! see you in part - 2



