Recent posts

GIT - Sync Fork from upstream Repo

less than 1 minute read

Add the Remote Upstream Repository git remote add upstream [Upstream git URL] Fetch the Upstream Branches git fetch upstream Merge Upstream Changes int...

GIT - Subtrees

less than 1 minute read

Setup git remote add <MY-SUBTREE> git@github.com:<USER>/<SUBPOJECT>.git git subtree add --prefix=<MY-SUBTREE>/ <MY-SUBTREE> ma...

GIT - Rebase (squashing)

2 minute read

When branching off of master or development the changes need to be merged back into the original branch. Let’s say you based your changes on the development...

CI - Publish to Github Pages

less than 1 minute read

Links https://github.com/serde-rs/serde-rs.github.io/issues/7 https://stackoverflow.com/questions/23277391/how-to-publish-to-github-pages-from-travis-c...

GIT - Forking

less than 1 minute read

Links: https://help.github.com/articles/syncing-a-fork/ https://help.github.com/articles/merging-an-upstream-repository-into-your-fork/ https://gist....