diff -r bbb170f9396d -r 9bae1d1a0f4c hgext/phabricator.py --- a/hgext/phabricator.py Sun Feb 16 16:13:36 2020 -0500 +++ b/hgext/phabricator.py Sun Feb 16 17:17:41 2020 -0500 @@ -124,6 +124,9 @@ eh.configitem( b'phabsend', b'confirm', default=False, ) +eh.configitem( + b'phabimport', b'secret', default=False, +) colortable = { b'phabricator.action.created': b'green', @@ -1729,6 +1732,9 @@ # Evolve 9.3.0 assumes this key is present in cmdutil.tryimportone() opts[b'obsolete'] = False + if ui.configbool(b'phabimport', b'secret'): + opts[b'secret'] = True + def _write(patches): parents = repo[None].parents()