D5473: config: register evolution.stackaliases as a config option

khanchi97 (Sushil khanchi) phabricator at mercurial-scm.org
Sat Dec 22 21:28:28 UTC 2018


khanchi97 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  In evolve, stackaliases (s#) are also used in some command outputs,
  where s# replaces the revision no. in that output.
  
  By default it is set to true, as s# are used by default.
  Adding this config option so that user can disable that
  stackaliases functionality in case if user is more comfortable
  with revision numbers.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D5473

AFFECTED FILES
  mercurial/configitems.py

CHANGE DETAILS

diff --git a/mercurial/configitems.py b/mercurial/configitems.py
--- a/mercurial/configitems.py
+++ b/mercurial/configitems.py
@@ -547,6 +547,9 @@
 coreconfigitem('experimental', 'evolution.report-instabilities',
     default=True,
 )
+coreconfigitem('experimental', 'evolution.stackaliases',
+    default=True,
+)
 coreconfigitem('experimental', 'evolution.track-operation',
     default=True,
 )



To: khanchi97, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list