https://bz.mercurial-scm.org/show_bug.cgi?id=6007
Bug ID: 6007 Summary: ui.tweakdefaults=false doesn't quite work Product: Mercurial Version: 4.7 Hardware: PC OS: Linux Status: UNCONFIRMED Severity: feature Priority: wish Component: Mercurial Assignee: bugzi...@mercurial-scm.org Reporter: vgatien-ba...@janestreet.com CC: mercurial-devel@mercurial-scm.org I was looking at ui.tweakdefaults, and noticed and got a report of chg getting stuck with the wrong setting, see test below. I expect ui.tweakdefaults=false to mean "ignore any previous ui.tweakdefaults=true" but that's not what happens. One can see weirdness even without chg, so chg may not be the source of the problem. $ hg init . $ cat >> .hg/hgrc <<EOF > [ui] > tweakdefaults = true > EOF $ mkdir a $ cd a $ touch b $ hg st # ok ? b $ hg st --config ui.tweakdefaults=false # ok ? a/b $ hg st --config ui.tweakdefaults=true --config ui.tweakdefaults=false # weird? ? b # Same thing as above with chg returns different result: $ chg st # ok ? b $ chg st --config ui.tweakdefaults=false # not ok ? b -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ Mercurial-devel mailing list Mercurial-devel@mercurial-scm.org https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel