Difference between revisions of "Repository"

From collectd Wiki
Jump to: navigation, search
(Location)
m (Reverted edits by 93.104.81.59 (Talk) to last revision by Octo)
Line 5: Line 5:
 
The official repository is available from:
 
The official repository is available from:
  
  git://git.verplant.org/collectd.git
+
  git://git.verplant.org/collectd.org
  
 
To clone the repository use:
 
To clone the repository use:
  
  $ git clone git://git.verplant.org/collectd.git
+
  $ git clone git://git.verplant.org/collectd.org
  
 
=== Github mirror ===
 
=== Github mirror ===

Revision as of 12:09, 15 December 2009

The source code of collectd is organized in a Git repository.

Location

The official repository is available from:

git://git.verplant.org/collectd.org

To clone the repository use:

$ git clone git://git.verplant.org/collectd.org

Github mirror

If you're more comfortable using Github you can use the mirror available there. Its web address is:

http://github.com/octo/collectd

The public clone URL is:

git://github.com/octo/collectd.git

How to check out a specific branch

If you sent a patch to the mailing list, chances are you were told that

“… the changes are in the ‘foobar’ branch.”

Usually this happens when a patch is not yet ready to be applied to the master branch (see below) and needs some review. For example, the main developers did some changes and ask you to verify that they didn't accidentally break anything.

To check out this ‘foobar’ branch, you have to clone the repository first, using the git clone command (see above). After that is done, “cd” into the newly created collectd/ directory. There you have to create a local copy of the branch, using:

git branch --track foobar remotes/origin/foobar

Then you have to check out that branch:

git checkout foobar

For further documentation on Git, please refer to the Git homepage. There you'll find documentation for beginners, SVN converts, computer scientists (people comfortable with terms such as “directed acyclic graph”) and much more.

Organization

We maintain three branches: One development branch (named “master”) and two bugfix branches. The first bugfix branch corresponds to the latest release, the second bugfix branch corresponds to the second latest release. Those are the versions we provide bugfixes for. At the time of this writing, those versions were “collectd-4.8” and “collectd-4.7”.

 ◆ ◄──────── master   ⎫
 │╲                   ⎪
 │ ╲                  ⎪
 │  ◆ ◄───── bugfix0  ⎬  branch heads
 │  │╲                ⎪
 │  │ ╲               ⎪
 │  │  ◆ ◄── bugfix1  ⎭
 │  │  │
 │  │  │
 ◇◅─│──│──── bug not released yet / new feature
 │  │  │     (available in “master” only)
 │  │  │
 │  ◇◅─│──── fix for bug introduced in the newest version
 │  │  │     (available in “bugfix0” and “master”)
 │  │  │
 │  │  ◇◅─── fix for bug introduced in an earlier version
 │  │  │     (available in “bugfix1”, “bugfix0” and “master”)
 │  │  │
Screenshot of gitk in which the three branches are visible nicely. Also note the now defunct “collectd-4.6” branch near the bottom.

Bugfixes are applied to the earliest branch possible. If a bug existed for a while, this is probably the “bugfix1” branch. If the bug was introduced in the latest release (i. e. “collectd-4.8” currently), then the fix is applied to “bugfix0”. If the commit fixes a bug that has not yet been released or adds a new feature, it is committed to the “master” branch. From time to time, the “bugfix1” branch is merged into the “bugfix0” and the “bugfix0” branch is merged into “master”, so that bugfixes are included in all appropriate branches.

With the release of version 4.8 the “collectd-4.7” branch became the new “bugfix1” branch and the “collectd-4.6” branch is now obsolete. Release 4.6.5 was created so that the “collectd-4.6” version does not fall into oblivion with unreleased bugfixes still in the appropriate branch.

Wiki templates

There are a couple of templates that make it easy to point to stuff in the repository.