Git
Why Sometimes git checkout fails
Did you ever wonder why when you run git checkout <branch name> from say a feature branch to the ...
All About Branches
Branch name inconsistency Sometimes the branch name shown in git are inconsistent. For example,...
Remove all untracked files
To remove all unwanted un-tracked files you can just run: git clean Use it with -n for a dry ru...
Pull in changes to feature branch from master
Say you branch off from the main branch and are currently working on a feature in Git. Suddenly, ...
Git rebase
What is Git Rebase git rebase is one of the two strategies in git along with git merge that allo...
When does a merge conflict happen?
What is merge conflict Merge conflict arises when you have two people changing the same line in ...