# HG changeset patch # User Martin Geisler # Date 1248566399 -7200 # Node ID 4ea022359c432b60bf188ea2d9002a2eb074341d # Parent 00cc7fa0c0c6faf698cbcbed823bb817dae4827c rebase: wrap docstrings at 70 characters diff -r 00cc7fa0c0c6 -r 4ea022359c43 hgext/rebase.py --- a/hgext/rebase.py Sun Jul 26 01:59:28 2009 +0200 +++ b/hgext/rebase.py Sun Jul 26 01:59:59 2009 +0200 @@ -7,7 +7,8 @@ '''command to move sets of revisions to a different ancestor -This extension lets you rebase changesets in an existing Mercurial repository. +This extension lets you rebase changesets in an existing Mercurial +repository. For more information: http://mercurial.selenic.com/wiki/RebaseProject @@ -41,9 +42,9 @@ def rebase(ui, repo, **opts): """move changeset (and descendants) to a different branch - Rebase uses repeated merging to graft changesets from one part of history - onto another. This can be useful for linearizing local changes relative to - a master development tree. + Rebase uses repeated merging to graft changesets from one part of + history onto another. This can be useful for linearizing local + changes relative to a master development tree. If a rebase is interrupted to manually resolve a merge, it can be continued with --continue/-c or aborted with --abort/-a.