examples: add comments to add.c

parent d4a593ef
...@@ -51,9 +51,11 @@ int lg2_add(git_repository *repo, int argc, char **argv) ...@@ -51,9 +51,11 @@ int lg2_add(git_repository *repo, int argc, char **argv)
struct index_options options; struct index_options options;
struct args_info args = ARGS_INFO_INIT; struct args_info args = ARGS_INFO_INIT;
/* Parse the options & arguments. */
parse_opts(NULL, &options, &args); parse_opts(NULL, &options, &args);
strarray_from_args(&array, &args); strarray_from_args(&array, &args);
/* Grab the repository's index. */
check_lg2(git_repository_index(&index, repo), "Could not open repository index", NULL); check_lg2(git_repository_index(&index, repo), "Could not open repository index", NULL);
/* Setup a callback if the requested options need it */ /* Setup a callback if the requested options need it */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment