Recent Posts

Rspec Notes

25 October 2016

less than 1 minute read

Notes about rspec which I find interesting.

Jekyll and Git Submodule

23 October 2016

1 minute read

As I invest more and more into building my Jekyll Site on Github Pages, I started to think to split my posts directory into a different git submodule.

GIT Cheatsheet

19 October 2016

less than 1 minute read

Command Explanation git commit --amend Amend last commit, which include the latest staged file. ...

GIT Filter Branch

17 October 2016

2 minute read

Ever committed a folder that shouldn’t be a GIT? e.g. node_modules, lib, vendor, etc. For my case with Jekyll, I committed _posts folder, which really should...

Git Cherry Pick and Config Files

12 October 2016

1 minute read

Have you ever worked in a project where you need to make changes to an already committed file but you are too scared to/cannot commit.

Ruby Hash

14 September 2016

1 minute read

A hash is an associative array, which is pretty much an array with key-value pairs of which the keys are unique.

GIT Rebase

07 September 2016

1 minute read

In order to rewrite history you need to use git rebase -i <commit_id>.