GIT
How to perform git undo add PROPERLY [5 Examples]
Use any of the following commands to git undo add on uncommitted files: git rm --cached git reset -- git reset Use any of these commands to apply git undo add …
Different ways to list branches in GIT [Local & Remote]
In this tutorial I have explained multiple commands which can be used to list branches in git. List both local and remote branch from git.
How to PROPERLY git squash commits [Practical Examples]
Step by step instructions to clean up your repository and working directory by using git squash commits with examples covering different scenarios
Decoding git init for you and when to use it?
Detailed explanation to understand the usage of git init command to initialize a local repo or remote repo with examples
Git merge vs rebase and the problems they solve
Comparing git merge vs rebase, Git merge is best in pulling and pushing changes without caring about the linearity of the commit history. Git rebase is …
