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 |
Why is it desirable to create an additional commit rather than amending an existing commit?
What is ‘bare repository’ in GIT?
What is a git commit and what does the commit object contain?
Distinguish between git fetch and git pull?
What are the advantages of using GIT?
Name a few git commands and explain their usage.
How to revert previous commit in git?
How do you find a list of files that have changed in a particular commit?
Explain what is commit message?
What is git and why do we use it?
What is git Is-tree?
What work is restored when the deleted branch is recovered?