Commit a2d953e5 by Dmitry Lobanov

branch: git branch upstream with format has been added.

parent ff78aea6
...@@ -468,7 +468,7 @@ cleanup: ...@@ -468,7 +468,7 @@ cleanup:
return error; return error;
} }
int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *refname) static int git_branch_upstream_with_format(git_buf *buf, git_repository *repo, const char *refname, const char *format)
{ {
int error; int error;
git_config *cfg; git_config *cfg;
...@@ -480,7 +480,7 @@ int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *r ...@@ -480,7 +480,7 @@ int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *r
return error; return error;
if ((error = git_buf_sanitize(buf)) < 0 || if ((error = git_buf_sanitize(buf)) < 0 ||
(error = retrieve_upstream_configuration(buf, cfg, refname, "branch.%s.remote")) < 0) (error = retrieve_upstream_configuration(buf, cfg, refname, format)) < 0)
return error; return error;
if (git_buf_len(buf) == 0) { if (git_buf_len(buf) == 0) {
......
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