- Install a full ruby development environment .
- Install jekyll and Bundler gems.
gem install jekyll bundler
- Fork this repository to your github account.
- Clone the forked repository and cd into it.
git clone https://github.com/username/Blog.git
- Create a new branch.
git checkout -b NewBranchName
- Make your changes.
- Refer jekyll docs for complete documentation.
- Build the site and make it available on local server.
bundle exec jekyll serve
- Preview your changes on http://localhost:4000
- Stage the changes.
git add path/to/changed-files
- Commit your changes.
git commit -m "Appropriate Commit Message"
- Push your Changes
git push origin NewBranchName
- Create a Pull request
- Mention someone to review it.
- Celebrate your Contribution 🚀