comparison tests/test-logexchange.t @ 37983:b9e6b71dc272

remotenames: enable the storage config option if extension is enabled Before this patch, the config option to store remotenames was set to False by default and remotenames extension does not set it True. So if you enable remotenames extension without setting 'experimental.remotenames=True', you won't get the remotenames. This patch makes remotenames enable the config option if then extension is enabled which makes sense. Differential Revision: https://phab.mercurial-scm.org/D3520
author Pulkit Goyal <7895pulkit@gmail.com>
date Sun, 29 Apr 2018 22:27:05 +0530
parents 7465b908d305
children 4d5fb4062f0b
comparison
equal deleted inserted replaced
37982:7465b908d305 37983:b9e6b71dc272
4 $ cat >> $HGRCPATH << EOF 4 $ cat >> $HGRCPATH << EOF
5 > [ui] 5 > [ui]
6 > ssh = $PYTHON "$TESTDIR/dummyssh" 6 > ssh = $PYTHON "$TESTDIR/dummyssh"
7 > [alias] 7 > [alias]
8 > glog = log -G -T '{rev}:{node|short} {desc}' 8 > glog = log -G -T '{rev}:{node|short} {desc}'
9 > [experimental]
10 > remotenames = True
11 > [extensions] 9 > [extensions]
12 > remotenames = 10 > remotenames =
13 > show = 11 > show =
14 > EOF 12 > EOF
15 13