Mercurial > hg-stable
annotate contrib/chg/chg.1 @ 50248:af9d050f2bb8
rust: box ConfigValueParseError to avoid large result types
clippy emits a warning that all the Result types are way too large
because of HgError includes ConfigValueParseError as one of the variants,
so its size is 136 bytes.
By boxing ConfigValueParseError we're hopefully making everything faster
"for free".
author | Arseniy Alekseyev <aalekseyev@janestreet.com> |
---|---|
date | Mon, 27 Feb 2023 18:24:29 +0000 |
parents | 283828850c56 |
children |
rev | line source |
---|---|
28060 | 1 .\" Hey, EMACS: -*- nroff -*- |
2 .\" First parameter, NAME, should be all caps | |
3 .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection | |
4 .\" other parameters are allowed: see man(7), man(1) | |
5 .TH CHG 1 "March 3, 2013" | |
6 .\" Please adjust this date whenever revising the manpage. | |
7 .\" | |
8 .\" Some roff macros, for reference: | |
9 .\" .nh disable hyphenation | |
10 .\" .hy enable hyphenation | |
11 .\" .ad l left justify | |
12 .\" .ad b justify to both left and right margins | |
13 .\" .nf disable filling | |
14 .\" .fi enable filling | |
15 .\" .br insert line break | |
16 .\" .sp <n> insert n+1 empty lines | |
17 .\" for manpage-specific macros, see man(7) | |
18 .SH NAME | |
19 chg \- a fast client for Mercurial command server | |
20 .SH SYNOPSIS | |
21 .B chg | |
22 .IR command " [" options "] [" arguments "]..." | |
23 .br | |
24 .SH DESCRIPTION | |
25 The | |
26 .B chg | |
27 command is the wrapper for | |
28 .B hg | |
29 command. | |
30 It uses the Mercurial command server to reduce start-up overhead. | |
31 .SH OPTIONS | |
32 This program accepts the same command line syntax as the | |
33 .B hg | |
34 command. Additionally it accepts the following options. | |
35 .TP | |
36 .B \-\-kill\-chg\-daemon | |
37 Terminate the background command servers. | |
38 .SH SEE ALSO | |
46801
283828850c56
chg: kill trailing comma in SEE ALSO
Joerg Sonnenberger <joerg@bec.de>
parents:
28454
diff
changeset
|
39 .BR hg (1) |
28060 | 40 .SH AUTHOR |
41 Written by Yuya Nishihara <yuya@tcha.org>. |