DEV Community

Cover image for Using CodeCommit with AWS free-tier
R o r d a n ♨️
R o r d a n ♨️

Posted on • Updated on

Using CodeCommit with AWS free-tier

First I created a budget to alert me of any charges accrued on my account

Image description

Then added an admin user to perform duties within my account

Image description

Granted the necessary user permissions

Image description

Downloaded the csv file created for the user

Image description

Able to sign in with credentials

Image description

Changed the auto-generated password

Image description

Created a repository via CodeCommit

Image description

Downloaded necessary access information for HTTP connection

Image description

Copied clone link to initiate the session in VScode

Image description

Pasted the clone link

Image description

Started a new WSL terminal from within VScode

Image description

Using git add , able to put the demo files onto staging

Image description

Next, git commit -m "<message>" and git push can be used to complete the upload. Because this connection occurs over HTTPS, it will be necessary to insert the CSV credentials downloaded previously each time.

Image description

Versioning and can editing can now be done from within CodeCommit

Image description

Demo JSON code shown from w3schools

Image description

I can select edit and add any code

Image description

Highlighted where the change has been made

Image description

Code commit will log the changes and show exactly where the changes were made. If this were a production case, the change can then be reviewed here before being pushed to the master branch

Image description

Top comments (0)