What are the benefits of using version control system?
Answer / Kedar Nath Bhati
Using a version control system like Git provides several benefits:n1. Collaboration: It allows multiple developers to work on the same project at the same time without overwriting each other's changes.n2. Tracking Changes: It records every change made to the project, making it easier to identify and correct errors.n3. Branching and Merging: Git allows for branching, which means creating separate lines of development without affecting the main codebase, and merging, which brings those branches back together when ready.n4. Backup: It serves as a backup for your work, allowing you to revert to previous versions if necessary.n5. Efficiency: It automates routine tasks such as compiling and deploying, saving time and effort.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between fork, branch, and clone?
Distinguish between git fetch and git pull?
Mention the various git repository hosting functions.
What is a git commit and what does the commit object contain?
What is the function of ‘git rm’?
Explain the difference between rebase and merge?
What is a repository in GIT?
What is another option for merging in git?
What is ‘git add’ is used for?
What is ‘head’ in git?
How will you know in git if a branch has already been merged into master?
How to create tag?