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 /builtin.h | |
| parent | Merge branch 'master' into ds/backfill (diff) | |
| download | git-a3f79e9abdbdb27308ac7e3d9e362bcc361cecdc.tar.gz git-a3f79e9abdbdb27308ac7e3d9e362bcc361cecdc.zip | |
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 'builtin.h')
| -rw-r--r-- | builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -120,6 +120,7 @@ int cmd_am(int argc, const char **argv, const char *prefix, struct repository *r int cmd_annotate(int argc, const char **argv, const char *prefix, struct repository *repo); int cmd_apply(int argc, const char **argv, const char *prefix, struct repository *repo); int cmd_archive(int argc, const char **argv, const char *prefix, struct repository *repo); +int cmd_backfill(int argc, const char **argv, const char *prefix, struct repository *repo); int cmd_bisect(int argc, const char **argv, const char *prefix, struct repository *repo); int cmd_blame(int argc, const char **argv, const char *prefix, struct repository *repo); int cmd_branch(int argc, const char **argv, const char *prefix, struct repository *repo); |
