Why GIT better than Subversion?
Answer / Brajesh Kumar Verma
Git offers several advantages over Subversion: 1. Distributed workflow allows multiple developers to collaborate without a central server, improving productivity and reducing network latency. 2. Better handling of merges due to its branching model, making it easier to manage complex projects with many contributors. 3. Fine-grained access control for more flexibility in managing repository permissions. 4. Faster performance, especially during operations like cloning, branching, and merging. 5. Support for staging changes before committing, promoting a cleaner and more organized commit history.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between fork and branch? How to create tag?
What work is restored when the deleted branch is recovered?
What is the difference between ‘git remote’ and ‘git clone’?
In git how do you revert a commit that has already been pushed and made public?
How to resolve a conflict in git?
What is GIT stash?
What is a commit message?
What language is used in GIT?
What is git fork? What is the difference between fork, branch, and clone?
Why GIT better than Subversion?
Explain what is commit message?
What is the common branching pattern in GIT?