Why git and not svn?
Answer / Devendra Pratap
Git is preferred over SVN due to several reasons such as: 1) Distributed nature - every developer has a full copy of the entire project, allowing for local work without reliance on a central server. 2) Better handling of merges with the merge-conflict resolution tools. 3) Flexibility in managing branches and tags. 4) Support for non-fast-forward merges which allows developers to revert changes if necessary.
| Is This Answer Correct ? | 0 Yes | 0 No |
In git, how would you return a commit that has just been pushed and made open?
What is git fork? What is the difference between fork, branch, and clone?
Explain the difference between rebase and merge?
How to revert previous commit in git?
Tell me the difference between head, working tree and index, in git.
What is the difference between git and github?
Explain the advantages of forking workflow?
What are git stash and git stash drop?
What is the function of ‘git diff ’ in git?
What is a repository in GIT?
What is the function of ‘git config’?
What is GIT version control?