Git
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.
Git rename branch - local and remote (PROPERLY)
The three steps to rename branch in git. Step 1; git branch -m old_branchname new_branchname, Step 2: git push origin :old_branchname new_branchname, Step 3: …
