What is the purpose of branching in GIT?
Answer / Upendra Singh Yadav
Branching in Git allows developers to work on separate features, fixes, or experiments without affecting the main codebase (usually the 'master' or 'main' branch). By isolating changes on a new branch, teams can collaborate more effectively, reduce conflicts, and maintain a stable production environment.
| Is This Answer Correct ? | 0 Yes | 0 No |
Mention the various git repository hosting functions.
What is git fork? How to create tag?
How can you use git bisect to determine the source of a (regression) bug?
How can you fix a broken commit?
Explain git stash, pop?
What does ‘hooks’ consist of in git?
Distinguish between git fetch and git pull?
What does ‘hooks’ comprise of in git?
Name some git commands and also explain their functions?
What is git fork?
Tell me the difference between head, working tree and index, in git.
What is the difference between rebasing and merge in git?