

Create a new repository on CodeCommit, use the account created in the previous step to clone, modify and push

In the Create repository interface
rosa-voting-app
Move code from github repo to CodeCommit repo and push changes to CodeCommit repo
version: 0.2
phases:
pre_build:
commands:
- echo Hello World
- echo Testing codebuild flow
post_build:
commands:
- echo Test successful!
git add .
git commit -m "rosa-voting-app"
git remote set-url origin [CodeCommit Repository URL]
git push origin master


