|
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 | * |
| 81 | + * . Add 'git-foo.adoc' to the manpages list in 'Documentation/meson.build'. |
| 82 | + * |
77 | 83 | * . Add an entry for `git-foo` to `command-list.txt`. |
78 | 84 | * |
79 | 85 | * . Add an entry for `/git-foo` to `.gitignore`. |
@@ -167,6 +173,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix, struct repositor |
167 | 173 | int cmd_commit_graph(int argc, const char **argv, const char *prefix, struct repository *repo); |
168 | 174 | int cmd_commit_tree(int argc, const char **argv, const char *prefix, struct repository *repo); |
169 | 175 | int cmd_config(int argc, const char **argv, const char *prefix, struct repository *repo); |
| 176 | +int cmd_config_batch(int argc, const char **argv, const char *prefix, struct repository *repo); |
170 | 177 | int cmd_count_objects(int argc, const char **argv, const char *prefix, struct repository *repo); |
171 | 178 | int cmd_credential(int argc, const char **argv, const char *prefix, struct repository *repo); |
172 | 179 | int cmd_credential_cache(int argc, const char **argv, const char *prefix, struct repository *repo); |
|
0 commit comments