The advantages of using git-svn over git are obvious(svn compatibility), but what are the advantages of git over git-svn?
+3
A:
It simply means you have one less VCS to manage in your development chain (svn).
In term of administration:
- you are left with distributed repositories managed by Git, each one autonomous with their complete history
- you do not have to maintain a connection to a central SVN repo.
- you can organize your backups differently (pushing your data to a remote backup bare repo, or exporting your Git repo through
git bundle
)
And of course you can manage all the advantages of Git over SVN
VonC
2010-02-18 04:54:53
Can you be more detailed in terms of actual usage(i.e. speed, functionality)?
Mike
2010-02-18 04:56:01
@Mike: I have completed my answer.
VonC
2010-02-18 05:06:16