Instructions/terminal commands to upload code to Github.
- Add new file changes by tracking everything:
git add .
- Track file changes to staging area:
git commit -m "some message about changes"
- Push changes to the remote Github repository:
git push origin master