• Posts
  • Javascript
  • React
  • About
  • Videos

Git

5 Git Tools You Must Use Today

July 21, 2019Git

Watch the video on YouTube In this article I'll list 5 git tools that you must use today. Hub Hub is my favourite tool and I use it a lot. If you use GitHub to store your repositories this tool will save you a ton of tim

Automate Git With Hooks And Husky

May 1, 2019Git

Watch the video on YouTube Git provides an interface to run some code as reaction on specific triggers. Those triggers are called githooks (hooks used by git). You can run code on every commit, push, pull or other action

Git Stash

July 12, 2018Git

Sometimes you have uncommited changes and you need to switch to another branch. Here is where git stash is very handy. Basic Usage Watch the video on YouTube When switching between tasks you sometimes have uncommited wor

Add Specific Lines With Git Patch

October 7, 2017Git

You know that git add adds files to index. But did do you know that it can add specific lines of files? Or even add files, ignoring their contents? Let's check this out! First let's get familiar with git add patch c

Getting Schwifty With Pull Requests

October 1, 2017Git

Once I was working on a big feature. Everything was going fine until I got carried away and started to commit everything in one branch instead of splitting to multiple smaller ones. As a result I ended up with a huge PR