diff options
author | Derrick Stolee <derrickstolee@github.com> | 2025-02-03 17:11:03 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2025-02-03 16:12:41 -0800 |
commit | a3f79e9abdbdb27308ac7e3d9e362bcc361cecdc (patch) | |
tree | ea7f9d2fff7dae1b384a2b19036e16cf0b80b152 /git.c | |
parent | e5a0d5d8bbeed7d0cb21533f9727591e110f50b8 (diff) |
backfill: add builtin boilerplate
In anticipation of implementing 'git backfill', populate the necessary files
with the boilerplate of a new builtin. Mark the builtin as experimental at
this time, allowing breaking changes in the near future, if necessary.
Signed-off-by: Derrick Stolee <stolee@gmail.com>
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
@@ -506,6 +506,7 @@ static struct cmd_struct commands[] = { { "annotate", cmd_annotate, RUN_SETUP }, { "apply", cmd_apply, RUN_SETUP_GENTLY }, { "archive", cmd_archive, RUN_SETUP_GENTLY }, + { "backfill", cmd_backfill, RUN_SETUP }, { "bisect", cmd_bisect, RUN_SETUP }, { "blame", cmd_blame, RUN_SETUP }, { "branch", cmd_branch, RUN_SETUP | DELAY_PAGER_CONFIG }, |