Monotone (software)

From Wikipedia, the free encyclopedia

Monotone
Image:monotone-logo.png
Developed by Nathaniel Smith, Graydon Hoare
Initial release  ?
Stable release 0.40  (April 11, 2008) [+/−]
Preview release n/a  (?) [+/−]
Written in C++
OS Unix, Linux, BSD, Mac OS X, Windows
Available in  ?
Genre revision control
License GPL
Website Monotone home

Monotone is an open source software tool for revision control. Monotone tracks revisions to files, groups sets of revisions into changesets, and tracks history across renames. The design principle is distributed operation making heavy use of cryptographic primitives to track file revisions (via the SHA1 secure hash) and to authenticate user actions (via RSA cryptographic signatures). Each participant maintains their own revision history store in a local SQLite database. Monotone is especially strong in its support of a diverge/merge workflow, which it achieves in part by always allowing commit before merge.[1] Revisions are exchanged using the custom netsync protocol which has its own IANA-assigned port (4691) and is supported by a Wireshark plug-in for traffic analysis (netsync shares some conceptual ground with rsync and cvsup). The focus of the project is on integrity over performance. Prior to some heavy optimisation in revision 0.27, this emphasis on correctness over optimisation was often blamed for causing poor initial experiences. The first action of a new user is often to synchronize (clone) a large existing Monotone database, an action which used to take hours to execute due to the extensive validation and integrity checking which Monotone performs when revisions are moved through the network. Once the initial (clone) database is populated, subsequent actions are usually quick. There is still room for further optimisation on some rarer functions.

Contents

[edit] Features

Like GNU arch, and unlike Subversion, Monotone takes a distributed approach to version control. Monotone uses SHA-1 hashes to identify specific files or groups of files, as with Git and Mercurial, in the place of version numbers.

Although Monotone originally supported a variety of networking protocols for synchronizing trees, it now exclusively uses a custom protocol called netsync, which is more robust and efficient (however, as of version 0.27, it is possible to use the netsync protocol over any stream, notably including ssh connections). There is no separate Monotone server because any Monotone client can act as a server, in accordance with the end-to-end principle.

Other features of Monotone include:

As of January 2008, possible drawbacks of Monotone include:

  • Less popular than some competing systems such as Git or Mercurial
  • Speed issues for certain operations (most noticeable initial pull)
  • A general lack of stable GUI interfaces; some are in the work though, f.e. TracMtn, a Trac plugin for history and repository browsing, or guitone, a Qt-frontend to manage workspaces and databases.

[edit] Milestones

Monotone version 0.26 introduced major changes to the internal database structures, including a new structure known by Monotone developers as a roster[1]. Monotone databases created with version 0.26 can not exchange revisions with older Monotone databases. The older databases must first be upgraded to the new format. The new netsync protocol is incompatible with earlier versions of Monotone.

[edit] Implementation

Monotone is implemented in modern-dialect C++ on top of the Boost system library, the Botan cryptography library, and the SQLite database library. Monotone supports customization and extension via hook functions written in the Lua programming language. The monotone build process is automated with BuildBot and includes extensive regression tests.

[edit] Monotone as Git inspiration

In April 2005, Monotone became the subject of increased interest in the FLOSS community after Linus Torvalds mentioned it as a possible replacement for BitKeeper in the Linux development process.[2] Instead of adopting Monotone, Torvalds wrote his own SCM system, Git. Git's design uses some ideas from Monotone, but the two projects do not share any core source code.

A key issue debated was whether the replacement of BitKeeper should support cherry picking wherein the tree maintainer can approve a subset of patches while rejecting others on an individual basis. Linus argues that this approach "results in the wrong dynamics and psychology in the system" by shifting burden to the upstream maintainers rather than forcing downstream maintainers to put more effort into keeping their trees free from garbage. He further argues that Monotone is correct in its aversion to cherry-picking as a feature, but then fails to take it far enough by not making it easy enough to "throw away" unclean working trees after their purpose is served.[3] He also noted his perception that Monotone at that time had not achieved the performance level required by a project as large as Linux kernel development.

This argument runs contrary to the perception among many software developers that cherry picking is an advanced feature that an SCM tool should strive to support. Other SCM tools, such as Darcs, are particularly strong in this area. Even Git now supports cherry picking, with the "git cherry-pick" command.

[edit] Support

Currently support for the software is available via mailing lists, IRC, and a support wiki.

[edit] See also

[edit] References

  1. ^ What are rosters
  2. ^ Linux-Kernel Archive: Kernel SCM saga
  3. ^ LKML: Linus Torvalds: Re: Kernel SCM saga

[edit] External links

[edit] Monotone users

Languages