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:
- If you added new files and want to track the files, you must run the following command for each file:
git add FILE_NAME
- Commit the changes:
git commit -a -m "COMMIT_MESSAGE"
- Push the changes o GitHub
git push