Difference between revisions of "Hints for Using SVN to collaborate on school projects"

From CDOT Wiki
Jump to: navigation, search
(Start the Project from zero)
(Start the Project from zero)
Line 83: Line 83:
 
#: This is when you have the project started by someone else (i.e. Professor,  other team-members, etc.) and you want to copy the work into your own repository and continue the work.
 
#: This is when you have the project started by someone else (i.e. Professor,  other team-members, etc.) and you want to copy the work into your own repository and continue the work.
 
=== Start the Project from zero ===
 
=== Start the Project from zero ===
 +
For this you should create the basic framework of your project in trunk, and '''Add''' and '''Commit''' it. Then branch it into the proper workspace in your home directory in '''branches'''. Finally you should '''update''', so the new branch is added to your copy of the repository on your machine. This is how you do this:
 +
 
* '''checkout''' the project repository in a new directory on your computer;
 
* '''checkout''' the project repository in a new directory on your computer;
 
*:# ''Create a new directory on your computer, right click on it and then click on '''SVN Checkout'''
 
*:# ''Create a new directory on your computer, right click on it and then click on '''SVN Checkout'''

Revision as of 18:37, 27 September 2010

Under construction
This text is a "how to" document to be used with a graphical user interface with SVN, like RabbitVCS for linux or RapidSVN for Mac or TortoiseSVN for Windows. Help making this better by adding SVN command line commands for examples.

SVN Basics

Directory Structure

|-- Team_Repository_Account
  +--branches
  | +-- member-id1  <-- this is the student's home in branches
  |   +-- Task1
  |   +-- Task2
  | +-- member-id2
  |   +-- Task1
  |   +-- Task2
  |   +-- Task3
  | +-- member-id3
  |   +-- Task1
  +--tags
  | +-- R0.1
  | +-- R0.11
  | +-- R0.2
  | +-- R0.21
  | +-- ...
  | +-- R0.5
  | +-- ...
  | +-- R1.0
  | +-- R1.1
  | +-- R1.2
  | +-- R1.21
  +--trunk

Branches

  • Branches is a common place for all team members' workspaces.
  • Each team member should create a home directory or workspace (member-id1, member-id2,...) for his own development tasks in branches.
  • The team-member's workspace is then divided in several directories (workspaces) during the development of the project. These workspaces(Task1, Task2, ...) are usually copies of the trunk to be worked on.
    These directories(Task1, Task2,...) are called branches of trunk. Also Note that when the word branch is used as a verb, it means copying the whole trunk into a subdirectory, either in Branches or tags.

Tags

  • tags directory holds copies of successful stages of trunk during development. (Also called as Milestones)
  • tags are never modified or edited. You may branch the a directory of tag into branches under a workspace and then modify it and apply the changes back to trunk, but the contents of a tag should never change
  • The action of branching the trunk into tags is often referred to as a release.
  • Most importantly, we use the tags directory to submit the work to the professor to be marked. Your professor will specify what are the requirements of a release.
    • A release is usual tagged by a version like: R0.1, Prj0.2, As1_1.0
    • When a release is due, always the latest version of that realease will be marked.
      If R0.3 is due, and in tags R0.3, R0.31, R0.32 are present, then R0.32 will be marked

Trunk

  • trunk IS the project at current staged, complied and run-able
  • trunk should never be at a non-complied stage. (usually trunk should be the exact copy as (or better than) the last version in tags).
  • If only one project is done within this repository, then trunk has no project level subdirectory and is the root of the project, otherwise, trunk is divided into several directories for each project to be version-controlled.
    In this case Tags should also be divided to the exact same project directories as trunk

Basic Actions

To explain basic actions we have to clear few facts and terminology:

  • Responsibility of a code repository is to keep track of all the modifications done to a project by different members.
    In other words, when a project handled by a code repository (version-controlled or in short versioned) you can track any changes done through the development life of the project; like who modified/added/deleted what and when. You can undo any work or rollback the work to any stage of the development and much more.
  • SVN a client/server based repository;
    Which means the code is kept on a server and those with access can copy the whole, or pieces of the project to their local machines and work on them and then apply the changes back to the server. Note that because if this fact, one member could be unaware of the changes make by another member, unless the first one applies the changes to the server.
  • Merging all the modifications by different members into the repository is another responsibility of SVN.
  • a Version-controlled or versioned file, is a file that is handled and tracked by a repository

import

import is to copy non-versioned work (directory) to a repository server.

note that in this case the imported code is on the server and is still NOT versioned on the client machine; to start working on an imported directory, you should fist checkout the directory from the repository to the client machine.

export

export is to copy the whole or part of a repository into a non-versioned directory on the client machine

This is usually done when you want to either package the project and make it ready for production or when you and to copy a piece of work form one repository to another repository.

checkout

checkout is to copy the code form repository server to a versioned directory on the client, so you can start working on it.

add

add is to flag a non-versioned file or directory to be added to the repository server at next commit

commit

commit is to apply (or copy) your modifications and additions to the repository server.

branch

branch is to copy a directory (like trunk) into another directory on the repository server.

Note that after braching the code is copied on the repository and not the local(client) machine. To actually work on the branched (copied) code you must checkout the directory after branching.

merge

merge is the opposite of branch.

"merge" merges back a branched directory, back to the original directory to apply the modifications and additions to the branched direcotry.

Starting the Project On SVN

There are two possibilities to initiate a project:

  1. Start the project from zero
    This is when you create a project and start the code yourself
  2. Start the project by continuing an existing work
    This is when you have the project started by someone else (i.e. Professor, other team-members, etc.) and you want to copy the work into your own repository and continue the work.

Start the Project from zero

For this you should create the basic framework of your project in trunk, and Add and Commit it. Then branch it into the proper workspace in your home directory in branches. Finally you should update, so the new branch is added to your copy of the repository on your machine. This is how you do this:

  • checkout the project repository in a new directory on your computer;
    1. Create a new directory on your computer, right click on it and then click on SVN Checkout
    2. In URL of repository type your repository path (svn://zenit.senecac.on.ca/....)
    3. click on ok
  • If the basic directories (trunk, tags, branches) don't exist create them and then add them by right clicking on them and selecting ...SVN/Add.
  • In trunk, create your basic project framework, compile and run it. (this could be as simple as few empty files or a Hello world application).
  • Right click on the trunk and select ....SVN/Add again and select all the needed file to be added to the repository.
    Add only those files that should be tracked for modification; "Those need to be version-controlled". Binary and Executable files are usually not added to the repository; Only add them if you know what you are doing.