Skip to content

Private Repo for learning data science tools and methods from Coursera

Notifications You must be signed in to change notification settings

rachnashetty/datasciencecoursera

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

data-science-coursera

Repo for learning data science tools and methods from Coursera

  1. Git Basics
  2. Useful Resources
  3. R Installation on Ubuntu

Git Basics

###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

About

Private Repo for learning data science tools and methods from Coursera

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published