|
68 | 68 | * |
69 | 69 | * . Add `builtin/foo.o` to `BUILTIN_OBJS` in `Makefile`. |
70 | 70 | * |
| 71 | + * . Add 'builtin/foo.c' to the 'builtin_sources' array in 'meson.build'. |
| 72 | + * |
71 | 73 | * Additionally, if `foo` is a new command, there are 4 more things to do: |
72 | 74 | * |
73 | 75 | * . Add tests to `t/` directory. |
74 | 76 | * |
| 77 | + * . Add the test script to 'integration_tests' in 't/meson.build'. |
| 78 | + * |
75 | 79 | * . Write documentation in `Documentation/git-foo.adoc`. |
76 | 80 | * |
77 | 81 | * . Add an entry for `git-foo` to `command-list.txt`. |
@@ -167,6 +171,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix, struct repositor |
167 | 171 | int cmd_commit_graph(int argc, const char **argv, const char *prefix, struct repository *repo); |
168 | 172 | int cmd_commit_tree(int argc, const char **argv, const char *prefix, struct repository *repo); |
169 | 173 | int cmd_config(int argc, const char **argv, const char *prefix, struct repository *repo); |
| 174 | +int cmd_config_batch(int argc, const char **argv, const char *prefix, struct repository *repo); |
170 | 175 | int cmd_count_objects(int argc, const char **argv, const char *prefix, struct repository *repo); |
171 | 176 | int cmd_credential(int argc, const char **argv, const char *prefix, struct repository *repo); |
172 | 177 | int cmd_credential_cache(int argc, const char **argv, const char *prefix, struct repository *repo); |
|
0 commit comments