| Exam | Date | Location | 
|---|---|---|
| Math 221 | 12:25 - 2:25 | B102 Van Vleck Hall | 
| CS 354 | 7:45 - 9:45 | 3650 Humanities | 
| CS400 | 5:05 - 7:05 | 1125 BioChem Bldg | 
CS400 - git commands
- git add
- stage an addition
- git commit
- commit your additions into a commit
- git push
- push the commit to the remote repository
- git status
- display additions/removes that are/aren't committed
- git checkout -b branchName
- create a new branch called branchName
- git checkout branchName
- switch branch to branch name
- git branch
- view available local branches and current branch
- git pull --rebase origin master
- pull from master, history is made linear
