Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/configitems.py @ 45793:96fcc37a9c80
rebase: make summary template configurable, with default to shared template
Differential Revision: https://phab.mercurial-scm.org/D9251
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 22 Oct 2020 23:10:06 -0700 |
parents | 5effb1992c17 |
children | 21733e8c924f |
comparison
equal
deleted
inserted
replaced
45792:b4c193509cd0 | 45793:96fcc37a9c80 |
---|---|
249 b'command-templates', | 249 b'command-templates', |
250 b'pre-merge-tool-output', | 250 b'pre-merge-tool-output', |
251 default=None, | 251 default=None, |
252 alias=[(b'ui', b'pre-merge-tool-output-template')], | 252 alias=[(b'ui', b'pre-merge-tool-output-template')], |
253 ) | 253 ) |
254 coreconfigitem( | |
255 b'command-templates', b'oneline-summary', default=None, | |
256 ) | |
257 coreconfigitem( | |
258 b'command-templates', | |
259 b'oneline-summary.*', | |
260 default=dynamicdefault, | |
261 generic=True, | |
262 ) | |
254 _registerdiffopts(section=b'commands', configprefix=b'commit.interactive.') | 263 _registerdiffopts(section=b'commands', configprefix=b'commit.interactive.') |
255 coreconfigitem( | 264 coreconfigitem( |
256 b'commands', b'commit.post-status', default=False, | 265 b'commands', b'commit.post-status', default=False, |
257 ) | 266 ) |
258 coreconfigitem( | 267 coreconfigitem( |