Step 1: Click here to fork the _posts repository.
Step 2: Run the following code to create a new branch:
1
2
$ cd _posts
$ git checkout -b name-of-your-branch
Step 3: Create a new file for your post:
1
$ touch YYYY-MM-DD-title-of-your-post.markdown
Step 4: Add the following to your new file:
1
2
3
4
5
6
7
8
---
layout: post
title: "Title of your post"
date: YYYY-MM-DD
comments: true
---

Add content here
Step 5: Commit and push.
Step 6: Create a pull request.

Comments