GIT
git merge explained with simple examples [Beginners]
Git merge is simply the act of combining branches. Git usually seeks the unifying base among the two branches for successful merging to be effected.
git branch management with examples [Beginners]
Overview on git branch. Different methods to create branch in both local and remote repo. Delete branch properly
How to EFFICIENTLY use git cherry pick [Best Practices]
Explore the intricacies of Git cherry pick command: its applications, workflows, advanced use cases, and best practices. Understand how to use this powerful …
git reset examples [hard vs soft vs mixed]
The git reset command changes your repository and working directory to a known state. Specifically, git reset adjusts the HEAD ref to a given commit, and by …
Git checkout remote branch PROPERLY [5 methods]
We use git checkout remote branch to access the content of a different branch from the main repository.
