comparison tests/test-rebase-conflicts.t @ 33771:96f43981c1c4

morestatus: move fb extension to core by plugging to `hg status --verbose` morestatus extension in fbext use to show more context about the state of the repo like the repository is in a unfinished merge state, or a rebase is going on, or histedit is going on, listing the files which need to be resolved and also suggesting ways to handle the situation. This patch moves the extension directly to core by plugging it into the --verbose flag of the status command. So now if you are in any unfinished state and you do hg status -v, it will show you details and help related to the state. The extension in fbext also shows context about unfinished update state which is not ported to core as that plug in hooks to update command which need to be tackled somewhat differently. The following configuration will turn the behaviour on by default [commands] status.verbose = 1 You can also skip considering some states like bisect as follows: [commands] status.skipstates=bisect This patch also adds test for the feature. .. feature:: ``hg status -v`` can now show unfinished state. For example, when in an unfinished rebase state, ``hg status -v`` might show:: # The repository is in an unfinished *rebase* state. # No unresolved merge conflicts. # To continue: hg rebase --continue # To abort: hg rebase --abort Differential Revision: https://phab.mercurial-scm.org/D219
author Pulkit Goyal <7895pulkit@gmail.com>
date Thu, 03 Aug 2017 05:12:35 +0530
parents 3b7cb3d17137
children 6c1a9fd8361b
comparison
equal deleted inserted replaced
33770:119e1c6be1ce 33771:96f43981c1c4
68 rebasing 4:46f0b057b5c0 "L2" 68 rebasing 4:46f0b057b5c0 "L2"
69 merging common 69 merging common
70 warning: conflicts while merging common! (edit, then use 'hg resolve --mark') 70 warning: conflicts while merging common! (edit, then use 'hg resolve --mark')
71 unresolved conflicts (see hg resolve, then hg rebase --continue) 71 unresolved conflicts (see hg resolve, then hg rebase --continue)
72 [1] 72 [1]
73
74 $ hg status --config commands.status.verbose=1
75 M common
76 ? common.orig
77 # The repository is in an unfinished *rebase* state.
78
79 # Unresolved merge conflicts:
80 #
81 # common
82 #
83 # To mark files as resolved: hg resolve --mark FILE
84
85 # To continue: hg rebase --continue
86 # To abort: hg rebase --abort
87
73 88
74 Try to continue without solving the conflict: 89 Try to continue without solving the conflict:
75 90
76 $ hg rebase --continue 91 $ hg rebase --continue
77 abort: unresolved merge conflicts (see 'hg help resolve') 92 abort: unresolved merge conflicts (see 'hg help resolve')