Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Latest commit

 

History

History
22 lines (10 loc) · 565 Bytes

File metadata and controls

22 lines (10 loc) · 565 Bytes

thesis

Nicole's PhD thesis

Useful git commands:

git clone https://github.com/nneveu/thesis.git (download a fresh copy of thesis materials)

git pull origin master (this updates the local directory with changes only)

git status (shows you what you have added or commited or if you are up to date)

How to add changes:

git add thesis.tex (this adds your local edits)

git commit -m "Message about edits" (this comines all edits and gets ready to send them)

git push origin master (this pushes your edits to the remote directory, now anyone can see them)