Understanding and using
version control for real work
lansingcodelab.com
pwd # Where am I?
ls # What's in the current directory?
cd # Change to a different directory
WINDOWS
OS X
brew install git
DEBIAN-BASED LINUX (LIKE UBUNTU)
sudo apt-get install git
FROM GITHUB
Create a repo on GitHub
git clone https://github.com/USER/REPO.git
FROM A LOCAL PROJECT
cd path/to/my-project
git init
git add -A .
git commit -m "description of changes"
git push origin master
git push origin master:gh-pages
Visit USER.github.io/REPO