How to push source code from local to CodeCommit of the AWS (Windows 10)

KMT
Apr 11, 2021
  1. Go to the project directory ->Type git init
  2. add .gitignore file at the project folder ->

3. Type git add to add the files ex) git add .

4. Type git commit -a

5. Create repository at the CodeCommit. Then connect local source to CodeCommit.

6. git remote add orginal https://git-codecommit.us-east-2.amazonaws.com/v1/repos/abcd~

7. then push through Intellij

--

--