git

Essential Git Command’s
SuganJuly 12, 20200 comments

Hello developers,in this post we are going to look into some of the essential (basic) git command that makes your dev life better. Before we dive into to the Git command’s let first have a quick look at what is git..? & why we use git..?. If you...

How to rebase in git
AntonJuly 8, 20200 comments

Git rebase allows us to move a sequence of commits to a new base commit.

Following are the steps you can use to rebase

  1. git fetch to sync git with origin.
  2. git rebase [base branch/commit]
  3. Resolve any conflicts if...