This assumes you already have Jekyll set up; if you don't, head here.
-
Make sure you have a local version of the main website:
git clone https://github.com/team178/team178.github.io.git
-
Navigate into the repository:
cd team178.github.io
-
Clone this reposititory into the main website:
git clone https://github.com/team178/countdown.git
The .gitignore in the main website has/countdown
in it. So this repo won't be tracked by git while in the main website's folder. But if you cd into/countdown
, you can still commit changes. -
Run
jekyll serve
to see the website onhttp://localhost:4000
. -
If you get any errors or warnings, try running
bundle exec jekyll serve
instead.