test: harmonize git-utils functions name

This commit is contained in:
Pierre Vanduynslager
2018-07-02 18:38:24 -04:00
parent 4abda31f83
commit 2d3a5e53e9
4 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -209,6 +209,6 @@ export async function gitCommitTag(gitHead) {
* @param {String} branch The branch to push.
* @throws {Error} if the push failed.
*/
export async function push(repositoryUrl = 'origin', branch = 'master') {
export async function gitPush(repositoryUrl = 'origin', branch = 'master') {
await execa('git', ['push', '--tags', repositoryUrl, `HEAD:${branch}`]);
}