So, What is Jekyll?

Posted by ECON爱好者 on June 9, 2014

Jekyll is a tool for transforming your plain text into static websites and blogs. It is simple, static, and blog-aware. Jekyll uses the Liquid templating language and has builtin Markdown and Textile support.

It also ties in nicely to Github Pages.

Learn more about Jekyll on their website.

How to use git to update master from defensive

Checkout via command line

If you cannot merge a pull request automatically here, you have the option of checking it out via command line to resolve conflicts and perform a manual merge.

Step 1: From your project repository, bring in the changes and test.

git fetch origin git checkout -b dev origin/dev git merge master

Step 2: Merge the changes and update on GitHub.

git checkout master git merge –no-ff dev git push origin master