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 |
How to squash or fixup commits?
What is the function of ‘git diff ’ in git?
What are the different ways you can refer to a commit?
How to remove a file from git without removing it from your file system?
Mention the various git repository hosting functions.
What does a commit object contain?
Why git and not svn?
How will you know in GIT if a branch has been already merged into master?
What is “Staging Area” or “Index” in GIT?
What work is restored when the deleted branch is recovered?
What is ‘head’ in git and how many heads can be created in a repository?
What is git bisect?