Breezy in five minutes

Introduction

Breezy is a distributed version control system that makes it easier for people to work together on software projects.

Over the next five minutes, you’ll learn how to put your files under version control, how to record changes to them, examine your work, publish it and send your work for merger into a project’s trunk.

Installation

This guide doesn’t describe how to install Breezy but it’s usually very easy. You can find installation instructions at:

  • GNU/Linux: Breezy is probably in your GNU/Linux distribution already.

For other platforms and to install from source code, see the Download and Installation pages.

Introducing yourself

Breezy records changes to source code, and it records who made the change. The person is identified by their name and email address. (If you’re concerned about spam, you don’t need to use a real address that you actually read, but the convention is that it looks like an email address.)

Before you start working, let’s tell Breezy who you are. Using your name and email address, instead of John Doe’s, type:

$ brz whoami "John Doe <john.doe@gmail.com>"

You can check what identity is stored in Breezy’s configuration:

$ brz whoami
John Doe <john.doe@gmail.com>

Starting a new project

Let’s suppose we want to store a new project under Breezy. First, we’ll make a repository directory to hold all our work related to this project, where developers can create branches to test development of specific features or, more generally, modifications to the working file set.

After creating the repository, change to that directory, and create the project’s main trunk branch.

$ brz init-shared-repo sample
Shared repository with trees (format: 2a)
Location:
  shared repository: sample
$ brz init sample/trunk
Created a repository tree (format: 2a)
Using shared repository: /home/john/sample/

Adding files

Now that we have the trunk, we need to move to that directory and create some example files for the first version of that project. Create a file test1.txt using a text editor (like emacs, nano, or notepad), and save it. Then we’ll “add” the file, which tells brz we want it to track changes:

$ cd sample/trunk
# create the file test1.txt now
$ brz add test1.txt
adding test1.txt

and then commit, which saves a snapshot of all versioned files:

$ brz commit -m "Added first line of text"
added test1.txt
Committed revision 1.

Making changes to your files

Let’s change a file and commit that change to your branch.

Edit test1.txt in your favourite editor, then use brz add to tell brz to track changes to this file

$ echo test test test > test1.txt
$ brz add test1.txt
adding test1.txt

brz diff shows the changes between the last revision in this branch, and your current tree (or, with the -r option, between any two trees).

$ brz diff
=== modified file 'test1.txt'
--- test1.txt   2007-10-08 17:56:14 +0000
+++ test1.txt   2007-10-08 17:46:22 +0000
@@ -0,0 +1,1 @@
+test test test

Commit your work to the Breezy branch:

$ brz commit -m "Added first line of text"
Committing to: /home/john/sample/trunk/
added test1.txt
Committed revision 1.

Viewing the revision log

You can see the history of your branch by browsing its log:

$ brz log
revno: 1
committer: John Doe <john.doe@gmail.com>
branch nick: trunk
timestamp: Mon 2006-10-08 17:46:22 +0000
message:
  Initial import

Publishing your branch on Launchpad

Launchpad is a suite of development and hosting tools for software projects. You can use it to publish your branch. (You can also publish branches onto your own server or other hosting services.)

The steps to publishing branches on Launchpad are:

  1. Create a Launchpad account: visit the Launchpad login page and choose to create a new account.

  1. Breezy uses the SSH encryption and authentication protocol to connect to Launchpad. You need to first create an SSH key on your own computer, by running the command:

    $ ssh-keygen
    
  1. Upload your SSH public key to Launchpad.

  1. Make a team for your project. Even if you’re starting as the only developer on this project, creating a new one now will let you more easily add other people later.

  1. Create a project.

  1. Tell Breezy your Launchpad account name. If your account is john.doe, type

    $ brz launchpad-login john.doe
    
  2. Push the branch for your project. Once you’ve committed your changes locally, you can publish them as the trunk of your new project by saying

    $ brz push lp:~sample-developers/sample/trunk

    (Of course, using the team and project names you just chose.)

Creating your own copy of another branch

To work with someone else’s code, you can make your own copy of their branch. Let’s take a real-world example, Breezy’s GTK interface:

$ brz init-shared-repo ~/bzr-gtk
$ brz branch lp:~brz/bzr-gtk/trunk ~/bzr-gtk/john
Branched 292 revision(s).

Breezy will download all the files and complete revision history from the bzr-gtk project’s trunk branch and create a copy called john.

Now, you have your own copy of the branch and can commit changes with or without a net connection. You can share your branch at any time by publishing it and, if the bzr-gtk team want to use your work, Breezy makes it easy for them to merge your branch back into their trunk branch.

Updating your branch from the main branch

While you commit changes to your branch, it’s likely that other people will also continue to commit code to the parent branch.

To make sure your branch stays up to date, you should merge changes from the parent into your personal branch:

$ brz merge
Merging from saved parent location: http://bazaar.launchpad.net/~bzr/bzr-gtk/trunk
All changes applied successfully.

Check what has changed:

$ brz diff

If different branches have made changes to the same areas of the same files, then merging them may generate conflicts. When this happens, Breezy puts text markers like <<<<<<< into the files, and records them in a list of conflicted files. You should edit the files to reflect the way you want to resolve the conflicts, use brz diff to check the changes, and then brz resolve to mark them as resolved.

If you’re happy with the changes, you can commit them to your personal branch:

$ brz commit -m "Merge from main branch"
Committed revision 295.

Learning more

You can find out more about Breezy in the Breezy User Guide.

To learn about Breezy on the command-line:

$ brz help

To learn about the ‘’foo’’ topic or command:

$ brz help foo

Licence

Copyright 2007-2011 Canonical Ltd. Breezy is free software, and you may use, modify and redistribute both Breezy and this document under the terms of the GNU General Public License version 2 or later. See <http://www.gnu.org/licenses/>.