git clone $YOUR_REPO_URL
for example
git clone git@github.com:HTL-Bulme/exercise-4-containers-yourname.git
after the above succeeds, you'll have a new directory that you have to enter; in this directory, you can complete the assignment whenever you finished coding, add your changes to the index; to see which files are changed, use git status
; to add them to the index use git add [...]
make a snapshot of your current status quo using git commit -m '$YOUR_COMMIT_MESSAGE'
upload your new change snapshots (commits) to the classroom platform git push
For further information on using distributed version control with git, see the overview page on DVCs or the git cheat sheet.
Gerald Senarclens de Grancy
master