See
...
Getting Started (Assuming git is already installed)
#### create a directory
mkdir git-repo
cd git repo
...
Basic command sequence for updates
cd ~cottrell/git-repo/imc14-tulip/text
git pull origin master
ls -l
vim file
git status
git commit -a -m "comment"
git push origin master
Creating paper
cd ~cottrell/git-repo/imc14-tulip; make clean; make #This creates paper.pdf
#Then print paper.pdf
Examples
Getting Started
[cottrell@iepm ~]$ mkdir git-repo
...