Prev Lesson | TOC | Next Lesson

Add the project to the git repo

Goal:

The previous step didn't do anything with our application. It is time to add them to the repo now.

Steps:

In your terminal, try:

$ git status
$ git add .
$ git commit -m "Added all the things"
$ git status

What Just Happened?

Prev Lesson | TOC | Next Lesson