diff options
author | Jeff King <peff@peff.net> | 2020-08-13 16:59:36 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-08-13 20:02:12 +0200 |
commit | d7a5649c82dfa83ba8d0253e4140f242dca859a7 (patch) | |
tree | 32a6298dadd6cce80adf1d95604e00169eaf21b2 /git.c | |
parent | make credential helpers builtins (diff) | |
download | git-d7a5649c82dfa83ba8d0253e4140f242dca859a7.tar.xz git-d7a5649c82dfa83ba8d0253e4140f242dca859a7.zip |
make git-bugreport a builtin
There's no reason that bugreport has to be a separate binary. And since
it links against libgit.a, it has a rather large disk footprint. Let's
make it a builtin, which reduces the size of a stripped installation
from 24MB to 22MB.
This also simplifies our Makefile a bit. And we can take advantage of
builtin niceties like RUN_SETUP_GENTLY.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -479,6 +479,7 @@ static struct cmd_struct commands[] = { { "bisect--helper", cmd_bisect__helper, RUN_SETUP }, { "blame", cmd_blame, RUN_SETUP }, { "branch", cmd_branch, RUN_SETUP | DELAY_PAGER_CONFIG }, + { "bugreport", cmd_bugreport, RUN_SETUP_GENTLY }, { "bundle", cmd_bundle, RUN_SETUP_GENTLY | NO_PARSEOPT }, { "cat-file", cmd_cat_file, RUN_SETUP }, { "check-attr", cmd_check_attr, RUN_SETUP }, |