Archived Daniel Shiffman Website
You can find the content from my old website here: https://shiffman-archive.netlify.app/
New website:
Main Technical Dependencies
Jekyll Installation instruction: https://jekyllrb.com/docs/installation/
CONTRIBUTING
Install Jekyll (link above)
Preparing your Fork
- Navigate to https://github.com/shiffman/shiffman.net
- Click ‘Fork’, creating e.g. /shiffman.net.
- Clone your project: git clone [email protected]:/shiffman.net.
- cd shiffman.net
- Create a branch:
git checkout -b foo-the-bars 1.x.x
Making your Changes
- Browse to project folder
- Run
jekyll serve
- Browse to http://127.0.0.1:4000
- Make code changes, browser will hot reload
- Test your changes
- Commit your changes: git commit -m "Foo the bars"
Creating Pull Requests
- Push your commit to get it back up to your fork:
git push origin HEAD
- Visit Github, click handy “Pull request” button that it will make upon noticing your new branch.
- In the description field, write down issue number (if submitting code fixing an existing issue) or describe the issue + your fix (if submitting a wholly new bugfix).
- Hit ‘submit’! And please be patient - the maintainers will get to you when they can.
Credits
This document is a modified version of the Contributing to Open Source Projects Article