Skip to content

Notes & bits of code supporting the 2014 UW-Madison statistics, data mining, and machine learning study group.

Notifications You must be signed in to change notification settings

brittlundgren/py-astro-stat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

py-astro-stat

Notes & bits of code supporting the 2014 UW-Madison Astronomy Statistics, Data Mining, and Machine Learning study group.

Committing to the Repository

To keep this repository organized please follow these instructions when writing new material for the course.

Create a directory where you will keep the repository content. cd into the directory Initialize the directory as a git repository

git init

Create an alias for the repository

git remote add origin [email protected]:brittlundgren/py-astro-stat.git

Pull the master branch.

git pull origin master

Create a directory under which you want to add content. Switch to a new branch

git checkout -b newbranch

Make your edits to the repository. To send changes back to the repository, first add the changes to git, then commit them to the local repository, then push them to the branch.

git add newmaterial
git commit -m 'Added new material'
git push origin newbranch

When finished, switch back to the master branch.

git checkout master

Push your edits to the master branch

git add newmaterial
git commit -m 'Added new material'
git push origin master

About

Notes & bits of code supporting the 2014 UW-Madison statistics, data mining, and machine learning study group.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages