Pushes the current Git `HEAD` to the given remote branch in the configured project.
(branchName: string)
| 302 | |
| 303 | /** Pushes the current Git `HEAD` to the given remote branch in the configured project. */ |
| 304 | protected async pushHeadToRemoteBranch(branchName: string) { |
| 305 | // Push the local `HEAD` to the remote branch in the configured project. |
| 306 | this.git.run(['push', '-q', this.git.getRepoGitUrl(), `HEAD:refs/heads/${branchName}`]); |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Pushes the current Git `HEAD` to a fork for the configured project that is owned by |
nothing calls this directly
no test coverage detected