Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 678 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 678 Bytes

A place for student files

This repository is intended to be cloned on each student machine. Each student can then have their own folder and have it cloned to every other machine at the library.

To see which local files have changed and need uploading, navigate to StudentFiles and enter:

git status

To commit a new file, you first need to track the changes. So if you want to track StudentName/main.py enter:

git add StudentName/main.py

To commit a newly tracked file, or a modified file:

git commit -m "new/changed file from StudentName"

To send commits to the server:

git push

To get changes from the server, enter:

git pull