This is a tutorial for Git. We focus on the features necessary for homework submission.

What is Git?

For the homework submission…

Git workflow (example)

  1. Create the remote (i.e. cloud) storage and clone it with the local storage in your computer.

  2. Make changes in the local storage and then push the changes to the remote storage.

  3. In other machines, pull any changes from the remote storage to update the local storage.

Commit and push

Branch

Using Git

git commit -m "first draft of HW1"
git push origin master