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

devquora
devquora

Posted On: Feb 22, 2018

 

  • A trunk is the mainstream of development that is related to SVN, right from the beginning of the project till the end.
  • Branch is a copy of the code that is derived from a specific location within the trunk that can be used in order to apply major changes to the code while preserving the original integrity of the code.
  • A tag is a point in time on the trunk/ branch that one wishes to preserve. The process of baselining the code after it has been majorly released is known as Tag.

    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 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:..

    SVN Interview Questions

    Distinguish between the functions commit and update in SVN.

    The main difference between the two foremost functions used in SVN are as follows:..