From 1fa949395f641d5529dd62d18bf2f1b2da5e6648 Mon Sep 17 00:00:00 2001 From: Shawn Erquhart Date: Mon, 18 Sep 2017 17:56:49 -0400 Subject: [PATCH] Add branch selection support for git gateway (#618) --- src/backends/git-gateway/implementation.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backends/git-gateway/implementation.js b/src/backends/git-gateway/implementation.js index 422d4f33..7533bb19 100644 --- a/src/backends/git-gateway/implementation.js +++ b/src/backends/git-gateway/implementation.js @@ -67,6 +67,7 @@ export default class GitGateway extends GitHubBackend { }; this.api = new API({ api_root: this.github_proxy_url, + branch: this.branch, tokenPromise: this.tokenPromise, commitAuthor: pick(userData, ["name", "email"]), });