What is the difference between git vs svn
Answer / Tajuddin
Git and SVN (Subversion) are both version control systems, but they have several differences: Git is distributed while SVN centralized; Git uses a hash-based history while SVN linearizes it; Git allows for multiple branches simultaneously while SVN handles them sequentially.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is ‘git add’ is used for?
How will you know in git if a branch has already been merged into master?
Distinguish between git fetch and git pull?
What is git bisect?
What does commit object contain?
What is the difference between git pull and git fetch?
What is git fork? What is the difference between fork, branch, and clone?
What is a “conflict” in git and how is it resolved?
What is a distributed vcs?
What is the function of ‘git checkout’ in git?
What is the function of git clone?
What is the function of ‘git stash apply’?