- clone the repo and change directory into it
git clone https://github.com/nyu-dh/soul-of-reason.git cd soul-of-reason
- install the ruby dependencies
bundle install
- serve the site locally
(use
bundle exec jekyll serve
ctrl-c
to quit) - check out a new branch to make changes
git checkout -b my-branch-name
- stage, commit, and push changes when you are ready
git add . git commit -m "these are the changes i made" git push --set-upstream origin my-branch-name
- to publish the changes on the live site, create and merge a pull request between your new branch and
main
.