DSCI 521 git example
- 'git clone ': does a one-time/only-time donwload of a git repo from
- 'git status': your friend
- 'git add ': add to staging area
- 'git commit': commits to the staging area, opens an editor for you to write a message
- 'git commit -m "MY MESSAGE"': does commit and apply message all at once
- 'git push ': push code from local to remote
- 'git pull ': pull code from remote to local