sapling/contrib/chg
Adam Simpkins 2a0b8f58fb update chg to correctly honor the pager.stderr setting
Summary:
Update the chg code to correctly honor the `pager.stderr` setting, and avoid
piping stderr to the pager when it is disabled.

Since only the server-side code knows the hg config values, the server-side
chgserver.py code passes this config setting back to the client when sending
the pager request.

Reviewed By: quark-zju

Differential Revision: D17109106

fbshipit-source-id: 6b69b1a7de9f61db51af7b0ba00d65fa5053a795
2019-09-09 11:48:42 -07:00
..
chg.1 chg: remove manual reload logic 2016-03-10 00:12:33 +00:00
chg.c chg: remove hashstate and validation logic 2019-08-28 19:26:26 -07:00
hgclient.c update chg to correctly honor the pager.stderr setting 2019-09-09 11:48:42 -07:00
hgclient.h chg: restart server automatically if handshake takes too long 2018-06-05 22:02:50 -07:00
Makefile chg: remove the ability to produce an actual binary 2019-03-14 06:35:45 -07:00
procutil.c update chg to correctly honor the pager.stderr setting 2019-09-09 11:48:42 -07:00
procutil.h update chg to correctly honor the pager.stderr setting 2019-09-09 11:48:42 -07:00
README chg: change default connect timeout to 60 seconds 2016-06-15 21:36:31 +01:00
util.c chg: restart server automatically if handshake takes too long 2018-06-05 22:02:50 -07:00
util.h chg: restart server automatically if handshake takes too long 2018-06-05 22:02:50 -07:00

cHg
===

A fast client for Mercurial command server running on Unix.

Install:

 $ make
 $ make install

Usage:

 $ chg help                 # show help of Mercurial
 $ alias hg=chg             # replace hg command
 $ chg --kill-chg-daemon    # terminate background server

Environment variables:

Although cHg tries to update environment variables, some of them cannot be
changed after spawning the server. The following variables are specially
handled:

 * configuration files are reloaded automatically by default.
 * CHGHG or HG specifies the path to the hg executable spawned as the
   background command server.

The following variables are available for testing:

 * CHGDEBUG enables debug messages.
 * CHGSOCKNAME specifies the socket path of the background cmdserver.
 * CHGTIMEOUT specifies how many seconds chg will wait before giving up
   connecting to a cmdserver. If it is 0, chg will wait forever. Default: 60