Merge lp:~nmb/bzr/fix-505088 into lp:bzr

Proposed by Neil Martinsen-Burrell
Status: Merged
Merged at revision: not available
Proposed branch: lp:~nmb/bzr/fix-505088
Merge into: lp:bzr
Diff against target: 34 lines (+9/-1)
2 files modified
NEWS (+6/-0)
bzrlib/builtins.py (+3/-1)
To merge this branch: bzr merge lp:~nmb/bzr/fix-505088
Reviewer Review Type Date Requested Status
Vincent Ladeuil Approve
Review via email: mp+17623@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Neil Martinsen-Burrell (nmb) wrote :

Following on another of Eli's good doc bug reports, this explains the --uncommitted option more fully in the doc text for merge.

Revision history for this message
Vincent Ladeuil (vila) wrote :

Please sort your NEWS entries, that avoid the conflicts as the one shown *right* now.

I'll tweak and merge.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'NEWS'
2--- NEWS 2010-01-18 18:35:11 +0000
3+++ NEWS 2010-01-18 21:25:26 +0000
4@@ -111,9 +111,15 @@
5 should appear up-to-date.)
6 (John Arbash Meinel, Martin <gzlist>, #488724)
7
8+<<<<<<< TREE
9 * Improve discussion of pending merges in the documentation for
10 ``revert``. (Neil Martinsen-Burrell, #505093)
11
12+=======
13+* Better explain the --uncommitted option of merge.
14+ (Neil Martinsen-Burrell, #505088)
15+
16+>>>>>>> MERGE-SOURCE
17 Improvements
18 ************
19
20
21=== modified file 'bzrlib/builtins.py'
22--- bzrlib/builtins.py 2010-01-18 18:35:11 +0000
23+++ bzrlib/builtins.py 2010-01-18 21:25:26 +0000
24@@ -3647,7 +3647,9 @@
25 committed to record the result of the merge.
26
27 merge refuses to run if there are any uncommitted changes, unless
28- --force is given.
29+ --force is given. If one would like to merge changes from the working
30+ tree of the other branch without merging any committed revisions, the
31+ --uncommitted option can be given.
32
33 To select only some changes to merge, use "merge -i", which will prompt
34 you to apply each diff hunk and file change, similar to "shelve".