Browsing Tag
git
91 posts
#gitPanic – Git 101
Look, git is hard, and it’s almost inescapable in software development today. #gitPanic will be an open ended…
A to Z of git and GitHub
Before diving into what is git and GitHub lets understand what is “version control system”. Version Control System…
Git: Renaming a Branch
Git branches are an easy way to manage our code, and separate our copies of our code when…
Git Merge: Merging Changes from other Branches
Git provides a powerful tool by letting us create branches. When our branch is done, we’ll often want…
Manage multiple git accounts
Hi! Do you have multiple git accounts or you just using one? I have multiple and everytime I…
Resolving Git Merge Conflicts
Merge conflicts are often a part of life for working on complex development projects. In this guide we’ll…
A Step by Step Guide to Git Branches
In my previous guide on getting started with git, I briefly covered how git branches work. You can…
Learn git alias and boost your productivity
Setting up an Alias Repeating the same git commands over and over again can be such a waste…
How to Change a Git Commit Date (For Beginners)
I am assuming you know git commit command and its option –amend. If not, then read about them…
A Git-Hook for Commit Messages Validation – No Husky, Just JS
Join me on this week’s post as I seek out an alternative for Husky git-hooks solution and find…