Lesson 02 - GitHub

GitHub

Read the Git and GitHub documentation provided in the Tools section.

Remember the following GitHub actions

When you work on a machine you never worked before, you should clone your repo:

git clone SSH_GITHUB_LINK

Before you start working on any device, the first command you should run is:

git pull

When you finish your work:

        git add FILE_NAME

        git commit -a -m "COMMIT_MESSAGE"

        git push