Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 611 Bytes

README.mediawiki

File metadata and controls

21 lines (13 loc) · 611 Bytes

CS221 Final Project

Assignment Page

Major Updates

  • 11/18 - Initial commit to wiki.

Git Overview

Installing git: http://help.github.com/mac-set-up-git/

Initial pull: git clone [email protected]:tjsavage/cs221_final_project.git

Pulling: git pull

Adding files: git add [filename] #to add individual files git add -A #to stage all files note that .gitignore will automatically ignore .pyc and .DS_Store files

Committing: git commit -m "Your commit message"

Pushing: git push