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 does a commit object contain?
Explain the difference between reverting and resetting.
What is the use of ‘git log’?
What is the function of ‘GIT PUSH’ in GIT?
How can you use git bisect to determine the source of a (regression) bug?
What is git Is-tree?
What are the advantages of using GIT?
What does ‘hooks’ consist of in git?
How to revert previous commit in git?
What is the difference between git and github?
Explain the difference between rebase and merge?
How to squash or fixup commits?