##// END OF EJS Templates
rebase: wrap docstrings at 70 characters
Martin Geisler -
r9271:4ea02235 default
parent child Browse files
Show More
@@ -7,7 +7,8 b''
7
7
8 '''command to move sets of revisions to a different ancestor
8 '''command to move sets of revisions to a different ancestor
9
9
10 This extension lets you rebase changesets in an existing Mercurial repository.
10 This extension lets you rebase changesets in an existing Mercurial
11 repository.
11
12
12 For more information:
13 For more information:
13 http://mercurial.selenic.com/wiki/RebaseProject
14 http://mercurial.selenic.com/wiki/RebaseProject
@@ -41,9 +42,9 b' def rebasemerge(repo, rev, first=False):'
41 def rebase(ui, repo, **opts):
42 def rebase(ui, repo, **opts):
42 """move changeset (and descendants) to a different branch
43 """move changeset (and descendants) to a different branch
43
44
44 Rebase uses repeated merging to graft changesets from one part of history
45 Rebase uses repeated merging to graft changesets from one part of
45 onto another. This can be useful for linearizing local changes relative to
46 history onto another. This can be useful for linearizing local
46 a master development tree.
47 changes relative to a master development tree.
47
48
48 If a rebase is interrupted to manually resolve a merge, it can be
49 If a rebase is interrupted to manually resolve a merge, it can be
49 continued with --continue/-c or aborted with --abort/-a.
50 continued with --continue/-c or aborted with --abort/-a.
General Comments 0
You need to be logged in to leave comments. Login now