lohaengineer.blogg.se

The subversion process
The subversion process









the subversion process

For example, when you release version 5.0, you might want to create a branch so that development of 6.0 features can be kept separate from 5.0 bug-fixes. It is useful when you want your development process to fork off into two different directions. Repository UUID: 7ceef8cb-3799-40dd-a067-c216ec2e5247 andīranches: Branch operation is used to create another line of development. Tag operation allows to give descriptive and memorable names to specific version in the repository.įor example, LAST_STABLE_CODE_BEFORE_EMAIL_SUPPORT is more memorable than Tags : The tags directory is used to store named snapshots of the project. Trunk: The trunk is a directory where all the main development happens and is usually checked out by developers to work on the project. By storing changes, a client makes these changes available to other people and by retrieving changes, a client takes other people's changes as a working copy.

the subversion process

Clients can connect to the repository, and then they can store/retrieve their changes to/from repository. Repository is accessed over a network, acting as a server and version control tool acting as a client. Repository not only stores files but also the history. It is the central place where developers store all their work. Repository: A repository is the heart of any version control system. Let us start by discussing some of the terms that we will be using in this tutorial. Subversion falls under centralized version control system, meaning that it uses central server to store all files and enables team collaboration. In this tutorial, we will concentrate only on the Centralized Version Control System and especially Subversion. Distributed/Decentralized Version Control System (DVCS).Centralized Version Control System (CVCS), and.Maintain history of every version of everything.Allow developers to work simultaneously.

THE SUBVERSION PROCESS SOFTWARE

Version Control System (VCS) is a software that helps software developers to work together and maintain a complete history of their work.įollowing are the goals of a Version Control System. SVN Basic Concepts What is Version Control System?











The subversion process