git
Essential Git Command’s
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
Git rebase allows us to move a sequence of commits to a new base commit.
Following are the steps you can use to rebase
git fetch
to sync git with origin.git rebase [base branch/commit]
- Resolve any conflicts if...