Svnmerge.py

From SubversionWiki
Jump to navigation Jump to search

svnmerge.py is a tool for automatic branch management. It allows branch maintainers to merge changes from and to their branch very easily, and automatically records which changes were already merged. This allows displaying an always updated list of changes yet to be merged, and totally prevents merge mistakes (such as merging the same change twice).

You can think of svnmerge as the equivalent of yellow sticky notes on a Subversion branch that record which revisions have been merged in already from one or more other branches, plus some useful functionality for viewing, managing and updating that information.

See our feature list for a more detailed description.


Features

  • Merge tracking support: the tool remembers which revisions have been already merged, and always do the right thing by default (only merges new revisions).
  • Specific support for development branches with a very simple "merge everything" command (does everything automatically).
  • Specific support for release branches through cherry-picking: name and merge single revisions or revision ranges.
  • List revisions available for merging (revision numbers, logs, or diffs).
  • Bidirectional merges: merges changes forth and back between a branch and its head.
  • Multiple heads support: merge changes from multiple sources. This is useful, for instance, for the trunk, which usually needs to merge changes from multiple branches.
  • Revision blocking: mark some revisions as unwanted in the branch, so that they will never get merged and you can forget about them.
  • Merge rollbacks: freely revert merges in case you changed your mind.
  • Absolutely commit-free: the user will always have to do the commit himself, and thus will always have a chance to review svnmerge.py's modifications.
  • Commit message suggestions: an informative commit message listing all the logs of the merged revisions is generated in a text file, as a suggestion for a good commit message.
  • Manual merges support: if you merged some changes manually, you can inform svnmerge.py to update its merge tracking info.


System requirements

System requirements are down to a bare minimum, to lower as much as possible the bar for using the tool. Currently, you need:

  • SVN command line client, version 1.1 or later.
    It might actually work with an older version but it has never been tested. Notice that the command line client is required: so, noticeably, if you use TortoiseSVN, you need to go install the official SVN distribution to use svnmerge.py (and no, this causes no conflicts whatsoever!)
  • Python 2.0 or later.
    This is used to run svnmerge.py directly from its source; another option is to download the binary Windows distribution (svnmerge.exe) which does not require an existing Python installation.


Downloads

Link Description
svnmerge.py trunk version This is the default development version, which is usually very stable. Get it without worrying too much!
svnmerge.py 1.4-branch version This is the version shipped with SVN 1.4. It's less updated than the trunk version so it will usually have less features but maybe be a little more stable. Get this if the current trunk version is temporarily broken.
svnmerge.exe Windows executable Self-contained Windows executable, does not require a Python installation (but still requires SVN command line client). This is updated every once in a while, use --version to compare it with the trunk version.

svnmerge.py is maintained within the Subversion repository. There is not a proper release plan or development map, so there are no official releases. svnmerge.py gets shipped with Subversion mostly 'the way it is' when Subversion itself is shipped. Thus, the trunk version is recommended: we believe it to be mostly stable (there is a quite extensive testsuite).


Mailing List

A mailing list has been established. Details are at: http://www.orcaware.com/mailman/listinfo/svnmerge. The mailing list is the place to go for information about active development and new features.


Quick Usage Overview

  1. Use svnmerge init to intialize merge tracking on a branch directory.
  2. Use svnmerge avail to review the revisions available for merging.
  3. Use svnmerge merge to merge in some or all available revisions from other branches.
  4. Commit the merge changes using svn commit.
  5. Return to step 2 and repeat.


Quick tutorials

What follows are two quick tutorials for two common usage cases. These tutorials are meant to "feel" how svnmerge.py works: you are still encouraged to read the full manual to get a better understanding of how the tool works.

Development branches

This tutorial assumes that you are working on a recently-created development branch, made off the trunk, that was never merged (that is, no changes have yet been imported from the trunk).

  • Go to the top-level directory of a pristine working copy of the branch. svnmerge.py is meant to always operate in this condition (so let me repeat: top-level directory, no local modifications).
  • Initialize merge tracking support:
$ svnmerge.py init

This command will scan the branch history to find out when the branch was created, so to initialize merge tracking support. This needs to be done only once for each branch you want to use svnmerge.py on.

  • svnmerge.py never does a commit, so it's your turn. You can use the handy automatically generated file:
$ svn ci -F svnmerge-commit-message.txt
$ rm svnmerge-commit-message.txt

Or use your favourite commit message.

  • It's time to do a merge. To merge everything from the trunk into the branch, it's sufficient to do:
$ svnmerge.py merge

and that's it! Then, review the merge, fix any eventual conflict, and commit. There is a handy commit message listing the logs of all the merged revisions (can be quite long), which many people find useful.

  • Repeat the last step whenever you want to merge new changes from the trunk.
  • If you want to have a look at what new changes are available to be merged from the trunk, do this:
$ svnmerge.py avail               # show only the revision numbers
$ svnmerge.py avail --log         # show logs of the revisions
$ svnmerge.py avail --diff        # show diffs of the revisions

Release branches

This tutorial assumes that you are working on a recently-created release branch, made off the trunk, in which no changes were previously merged. With release branch, we mean a branch commonly used to stabilize a release: only a few selected changes must be merged from the trunk, the others must be ignored.

  • Go to the top-level directory of a pristine working copy of the branch. svnmerge.py is meant to always operate in this condition (so let me repeat: top-level directory, no local modifications).
  • Initialize merge tracking support:
$ svnmerge.py init

This command will scan the branch history to find out when the branch was created, so to initialize merge tracking support. This needs to be done only once for each branch you want to use svnmerge.py on.

  • svnmerge.py never does a commit, so it's your turn. You can use the handy automatically generated file:
$ svn ci -F svnmerge-commit-message.txt
$ rm svnmerge-commit-message.txt

Or use your favourite commit message.

  • Review changes available on the trunk to be integrated into the branch:
$ svnmerge.py avail               # show only the revision numbers
$ svnmerge.py avail --log         # show logs of the revisions
$ svnmerge.py avail --diff        # show diffs of the revisions
  • When you identify specific revision(s) that you want to merge into the release branch, use the following command to do the merge:
$ svnmerge.py merge -r4500,4671,4812

Then review the changes and commit them. The automatically generated commit message (svnmerge-commit-message.txt) quotes the logs of the revisions that you have merged. These revisions will of course disappear from the list shown by svnmerge.py avail.

  • When you identify specific revision(s) which are obviously not going to be integrated into the branch, mark them as blocked:
$ svnmerge.py block -r6456-6460,6881

and commit. These revisions will disappear from the list shown by svnmerge.py avail, so that you don't have to re-review them every time.

  • Repeat the last two steps ad libitum, until you reduce the avail list to the bare minimum. A well-maintained release branch always has a small avail list of revisions which are still to be reviewed and/or discussed for backport into the branch: all the other revisions are either already merged or blocked.


Handy Usage Tips

Revision lists are specified as comma separated ranges, e.g., 1412-1419,1423,1427,1433-1440. Ranges may overlap or be out of order; svnmerge will automaticaly normalize them. So 1413-1417,1410-1414,1402,1401 is equivalent to 1401-1402,1410-1417.

svnmerge never commits anything; it always leaves that final step to you. Use svn revert -R . if you need to start over. Note however that "svn revert" will not delete any files added by the merge, so you may have to remove some files yourself to get a complete reversion.

svnmerge merge requires that there be no outstanding changes in the branch directory (otherwise you could accidentally "merge" in a change that never existed in the head directory); use the --force flag to override this check.

Merges of discontinuous revision ranges can produce conflicts or omissions; this is an inherent fact of discontinuous merges, for example, if revision X modifies a file that was created in a previous revision Y < X that you haven't merged in yet. Pay special attention to the output from svnmerge (which comes directly from the "svn merge") for any ignored files or other complaints from Subversion; fixing these cases is up to you. Note that an "ignoring" message indicates a real conflict; it's just that the conflicting file doesn't exist in the target branch so Subversion can't mark it with a "C". In such cases, it's probably a good idea to include a comment in the commit message, e.g., "Note: patch to foo/bar.c in r1234 not included".