Repo for learning data science tools and methods from Coursera
###Linking/Initializing new repos
$ git init
Initializes git directory
$ git remote add origin https://github.com/username/test-rep.git
points local repo to remote repo
###Creating and updating repos
$ git pull
Pulls from the master to the local repo. (Pull before commits)
$ git add .
Adds all new files to the local repo
$ git add -u
Updates changes in renamed/deleted files
$ git add -A
Does both of the above
$ git commit -m"Message"
Commits to the local repo with a message
$ git push origin master
Pushes changes to the master branch of the remote repo
##Useful resources