MCPcopy Index your code
hub / github.com/git/git / git_column_config

Function git_column_config

column.c:328–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326}
327
328int git_column_config(const char *var, const char *value,
329 const char *command, unsigned int *colopts)
330{
331 const char *it;
332
333 if (!skip_prefix(var, "column.", &it))
334 return 0;
335
336 if (!strcmp(it, "ui"))
337 return column_config(var, value, "ui", colopts);
338
339 if (command && !strcmp(it, command))
340 return column_config(var, value, it, colopts);
341
342 return 0;
343}
344
345int parseopt_column_callback(const struct option *opt,
346 const char *arg, int unset)

Callers 6

get_coloptsFunction · 0.85
git_tag_configFunction · 0.85
git_clean_configFunction · 0.85
git_status_configFunction · 0.85
column_configFunction · 0.85
git_branch_configFunction · 0.85

Calls 1

column_configFunction · 0.70

Tested by

no test coverage detected