MCPcopy Create free account
hub / github.com/git/git / parse_mark

Function parse_mark

builtin/fast-import.c:1901–1910  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1899}
1900
1901static void parse_mark(void)
1902{
1903 const char *v;
1904 if (skip_prefix(command_buf.buf, "mark :", &v)) {
1905 next_mark = strtoumax(v, NULL, 10);
1906 read_next_command();
1907 }
1908 else
1909 next_mark = 0;
1910}
1911
1912static void parse_original_identifier(void)
1913{

Callers 4

parse_new_blobFunction · 0.85
parse_new_commitFunction · 0.85
parse_new_tagFunction · 0.85
parse_aliasFunction · 0.85

Calls 1

read_next_commandFunction · 0.85

Tested by

no test coverage detected