Selasa, 08 Juli 2014

Difference between trunk, tags and branches in SVN or Subversion source control system




SVN or Subversion is one of the popular source control system used in Java
world for source code management. There are lot of source control system
available e.g.
Git, Perforce, CVS, Clearcase, VSS, but SVN has it’s
own place among Java developer and open source
communities. Knowledge of source control system is must for any professional
programmer. New users of subversion often confused between three things trunk,
tags and branches. Questions like, what is difference between a tag and a
branch in subversion
is frequently asked in various Java forums and chat
rooms. In this article, we will see what is trunk, tags or branches in SVN and
understand difference between trunk, tag and branch. In short, when you first
upload your project to SVN it creates a trunk, It's analogous to trunk of tree.
this trunk forms the main development line. When multiple developer work on
different functionality of project they usually create branch from trunk and
after successfully completing that functionality, they usually merge there
changes to trunk. On the other hand tag is usually used to create read only
snapshot of either trunk or branch, which has been released, for future use.
You can think tag as stable snapshot of code at any point, and can be used to
as backup or restore. Let's see
difference between branch, trunk and tag more detail in next section.







trunk vs branch vs tag in subversion or SVN



Difference between trunk, branch and tag in SVN, CVS or Subversion


Technically all three i.e. trunk, branch and tag are folders in SVN. If
you are using tortoise SVN, a popular windows client for subversion, you can
explore trunk, branch or tag. If you browse SVN repository using Repo browser
or simply open it on any browser e.g. Internet explorer, you will generally see
three directories as trunk, branch and tags at root of project. This is
actually one of SVN best practice to create this kind of directory
structure. As I said earlier, trunk is place where main development happens,
and branches are places where different developer work on different
functionalities. This division is purely based on how programmer uses trunk and
branches. Similarly, tags are used to backup releases e.g. alpha release or beta
release or any version of release. Main difference
between branch and tag in subversion
is that, tag is a read only copy of source code at any point and
no further change on tag is accepted, while branch is mainly for development.
Other source control like CVS doesn't allow modification on tags but SVN allows
changes on tags, which is considered as bad practice. You should not be making
any change on tag once created, it should be treated as read only copy of
source code only for restore purpose.





In short


- A trunk in SVN is main development area, where major development
happens.


- A branch in SVN is sub development area where parallel development on
different functionalities happens. After completion of a functionality, a
branch is usually merged back into trunk.


- A tag in SVN is read only copy of source code from branch or tag at any
point of time. tag is mostly used to create a copy of released source code for
restore and backup.





That's all on difference between trunk, branch and tags in Subversion
or SVN
. They are mostly categorized based upon there usage. Though trunk,
branch and tag are quite common words in source control, and other SCM also
uses these words, there behavior may be little different on other SCM, so
don't forget to check SCM documentation.





Other Programming articles from Javarevisited Blog







Real world example of Dependency
Injection and Inversion of Control design pattern























Source:http://javarevisited.blogspot.com/2013/04/difference-between-trunk-tags-and-branch-svn-cvs-git-scm-subversion.html

Tidak ada komentar:

Posting Komentar