sapling/contrib/chg
Kostia Balytskyi 9bb35f3233 chg: tell original cmd to not restart chg
Summary:
When `chg` decides, that the command is unsupported, it executes the real hg
instead. Now that the real `hg` and the `chg` can be the same binary, we need
to make sure that `chg` is definitely not re-executed. Passing `CHGDISABLE`
achieves that.

Reviewed By: markbt

Differential Revision: D13118766

fbshipit-source-id: e41a2c230d17c4c26e590d648e4d0b722cf41ee5
2018-11-19 06:15:32 -08:00
..
chg.1 chg: remove manual reload logic 2016-03-10 00:12:33 +00:00
chg.c chg: tell original cmd to not restart chg 2018-11-19 06:15:32 -08:00
hgclient.c chg: restart server automatically if handshake takes too long 2018-06-05 22:02:50 -07:00
hgclient.h chg: restart server automatically if handshake takes too long 2018-06-05 22:02:50 -07:00
Makefile chg: learn to build a static lib 2018-11-05 10:08:29 -08:00
procutil.c hg: disable check-code tests for C code 2018-06-05 19:21:43 -07:00
procutil.h hg: disable check-code tests for C code 2018-06-05 19:21:43 -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