GIT
git prune explained [Easy Examples]
Git prune is a git function whose main purpose is cleaning stale or dormant objects from a git repository. A stale object in git becomes unreferenced and cannot …
git change branch name PROPERLY [3 Examples]
Step by step instructions to git change branch name with examples. Understand the workflow and different scenarios to rename branch name
git diff usage explained [Multiple Scenarios]
Git diff command helps to show a comparison between files, branches, tags and commits that make up a commit-tree. It can bring out the distinction between …
git fetch workflow explained [With Easy Examples]
git fetch is used to get objects and references from remote. It is different from pull operation because pull will additionally merge the changes into local …
git undo commit PROPERLY [5 Different Ways]
Git has provided a variety of functions to manage your working repository including git undo commits that are unwanted. They include git checkout, git clean,
