CATEGORY

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 …

By admin · 6 min read · GIT

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

By admin · 7 min read · GIT

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 …

By admin · 6 min read · GIT

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 …

By admin · 7 min read · GIT

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,

By admin · 11 min read · GIT