Differentiate between GIT and SVN Repository.

devquora
devquora

Posted On: Feb 22, 2018

 

The main differences between GIT and SVN repository are:

  • GIT does not support the commit function across all the branches and tags; while on the other hand creating of folders at any location within the repository is allowed by SVN.
  • GITs is unchangeable while SVN permits a user to treat a tag and create multiple revision under the root Tag.
  • SVN is preferred over GIT for handling large files or for frequently changing the local binary files.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    SVN Interview Questions

    What do you understand by SVN?

    SVN is abbreviated for “Subversion” which is an open source control system that is used for tracing all the change..

    SVN Interview Questions

    Explain the terms trunk, tag and branch in context of SVN.

    A trunk is the mainstream of development that is related to SVN, right from the beginning of the project till the end...

    SVN Interview Questions

    Explain the use of Revert in SVN?

    Revert is simply a command that is used to “revert” any local changes in the code. Revert functions are generally of two types:..