Skip to content

Commit f7c3d62

Browse files
committed
branch: git branch upstream functions layouts have been fixed.
1 parent 7d9599b commit f7c3d62

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/branch.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,11 +492,13 @@ static int git_branch_upstream_with_format(git_buf *buf, git_repository *repo, c
492492
return error;
493493
}
494494

495-
int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *refname) {
495+
int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *refname)
496+
{
496497
git_branch_upstream_with_format(buf, repo, refname, "branch.%s.remote");
497498
}
498499

499-
int git_branch_upstream_merge(git_buf *buf, git_repository *repo, const char *refname) {
500+
int git_branch_upstream_merge(git_buf *buf, git_repository *repo, const char *refname)
501+
{
500502
git_branch_upstream_with_format(buf, repo, refname, "branch.%s.merge");
501503
}
502504

0 commit comments

Comments
 (0)