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

Function error_buf

remote.c:1851–1861  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1849}
1850
1851__attribute__((format (printf,2,3)))
1852static char *error_buf(struct strbuf *err, const char *fmt, ...)
1853{
1854 if (err) {
1855 va_list ap;
1856 va_start(ap, fmt);
1857 strbuf_vaddf(err, fmt, ap);
1858 va_end(ap);
1859 }
1860 return NULL;
1861}
1862
1863const char *branch_get_upstream(struct branch *branch, struct strbuf *err)
1864{

Callers 4

branch_get_upstreamFunction · 0.85
tracking_for_push_destFunction · 0.85
branch_get_push_1Function · 0.85
branch_get_pushFunction · 0.85

Calls 1

strbuf_vaddfFunction · 0.85

Tested by

no test coverage detected