comparison mercurial/ui.py @ 37917:c6904da6ab15

tweakdefaults: remove "bisect" from commands.status.skipstates If you forget to clear bisect state after you're done bisecting (as I've done twice in the last week or so), the next time you run `hg bisect --good/--bad`, it's going to tell you "The first bad revision is:" etc. It's probably not obvious to new users what's going on, and having the verbose output about an ongoing bisection will probably help them, so let's turn it back on by default. Differential Revision: https://phab.mercurial-scm.org/D3516
author Martin von Zweigbergk <martinvonz@google.com>
date Wed, 09 May 2018 13:46:31 -0700
parents bbd240f81ac5
children 6acf41bb8d40
comparison
equal deleted inserted replaced
37916:34f259a1c153 37917:c6904da6ab15
64 status.relative = yes 64 status.relative = yes
65 # Refuse to perform an `hg update` that would cause a file content merge 65 # Refuse to perform an `hg update` that would cause a file content merge
66 update.check = noconflict 66 update.check = noconflict
67 # Show conflicts information in `hg status` 67 # Show conflicts information in `hg status`
68 status.verbose = True 68 status.verbose = True
69 # Skip the bisect state in conflicts information in `hg status`
70 status.skipstates = bisect
71 69
72 [diff] 70 [diff]
73 git = 1 71 git = 1
74 showfunc = 1 72 showfunc = 1
75 """ 73 """