Basic Git Commands - syue99/Lab_control GitHub Wiki
To update/check the git hub first go to the right folder, e.g.
LabRAD/lattice LabRAD/common
Check status
git status
Add new files
git add <file>
Add all new files (with output)
git add * -v
Commit changes
git commit -m 'message'
Add all and commit changes
git commit -a -m 'message'
Push / Pull
git push git pull