Recent posts

GIT - Create a new Branch with no history

less than 1 minute read

this creates a <NEW_BRANCH_NAME> from the current branch, with the last commit as the only commit. (no history) git branch <NEW_BRANCH_NAME> $(e...

GIT - configure upstream repo for a Fork

less than 1 minute read

Links: https://help.github.com/articles/configuring-a-remote-for-a-fork/ https://medium.com/sweetmeat/how-to-keep-a-downstream-git-repository-current-w...

GIT - Cherry-Pick

less than 1 minute read

Links: http://think-like-a-git.net/sections/rebase-from-the-ground-up/cherry-picking-explained.html