Getting started with Chirpy
Go to their page “use template” Make a good name like
1
Mysite.github.io
Then
1
git clone https://github.com/cotes2020/chirpy-starter.git mysite.github.io
Then just
1
bundle
If permission error occurs:
1
sudo chown eko:eko /home/eko/irondingosite/irondingo.github.io/ -R
Or
1
sudo chown $USER:$USER /home/eko/irondingosite/irondingo.github.io/Gemfile.lock
Then run the site locally with:
1
bundle exec jekyll s
Do the edits in _config.yml and in _posts.
Then push
Navigate to the github/workflows
folder pages-deploy.yml
Its going to run a deployment script to push it to Github pages.
If its there, if not continue below.
1
2
3
git status
git add .
git status
This should be green, so these files are “staged”.
1
git commit -m "feat(post):New changes uploaded!"
Commiting and giving it a comment. Then push with
1
git push
This post is licensed under CC BY 4.0 by the author.