- Kyle Cranmer
This is a GitHub repository to accompany Intro to Exp Phys II. Click on the notebooks. Sometimes the math in the notebooks doesn't display well in GitHub... and it doesn't work on many mobile phones. Instead you can look at it with nbviewer. Here are some links for convenience:
Run the notebooks from within your browser without installing anything thanks to Binder
- Fork this repository by clicking on "Fork" button above
- Clone your fork of the repository to your computer (find repository in your GitHub user profile, and clone it from there)
If there are updates that you want to get:
- check if your repository is in a clean state with
git status
. - If it is not, you will need to clean it up (more info below)
- If it is, then make sure you are on your
master
branch withgit branch
. If you aren't you need to check it out withgit checkout master
Now you are ready to update:
git fetch cranmer master
git merge cranmer/master
Now you should have the up-to-date repository.
- On your computer you should make a new branch if you want to play aroud
git branch play
git checkout play
now you can make changes without conflicting with the master
branch.
To save your changes
Tutorials:
https://guides.github.com/activities/hello-world/