How to keep your forked repositories in sync with the source repository

This blog post aims to answer the following questions. How to contribute to Open Source Projects (Partially)? How to keep forked repositories in sync with the source repository ? How to pull the commits from source repository to the forked repository? I often forked open source repositories found in github and also commit back to … Continue reading “How to keep your forked repositories in sync with the source repository”

Access Jekyll server running inside vagrant box

By default Jekyll listens for request coming from localhost only. We have to configure Jekyll to accept incoming requests outside of localhost. Use command provided below to start Jekyll server : [sourcecode] $ Jekyll server –watch –host 0.0.0.0 [/sourcecode] The trick here is to use –host 0.0.0.0 which tell Jekyll to accept all incoming connections. … Continue reading “Access Jekyll server running inside vagrant box”