Git5 Git Tools You Must Use TodayJuly 21, 2019GitWatch 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 timAutomate Git With Hooks And HuskyMay 1, 2019GitWatch 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 actionGit StashJuly 12, 2018GitSometimes 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 worAdd Specific Lines With Git PatchOctober 7, 2017GitYou 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 cGetting Schwifty With Pull RequestsOctober 1, 2017GitOnce 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