Skip to content
micramm edited this page Mar 1, 2013 · 2 revisions

Table of Contents

Check status

To update/check the git hub first go to the right folder, e.g.

 LabRAD/lattice
 LabRAD/common

Check status

 git status

Add files

Add new files

 git add <file>

Add all new files (with output)

 git add * -v

Commit changes

Commit changes

 git commit -m 'message'

Add all and commit changes

 git commit -a -m 'message'

Push/Pull

Push / Pull

 git push
 git pull