diff --git a/lib/git.js b/lib/git.js index d9238405..11884cc0 100644 --- a/lib/git.js +++ b/lib/git.js @@ -65,7 +65,7 @@ exports.push = function (remote, branch) { }; exports.fetch = function (repoUrl, headBranch, pullBranch) { - var args = ['fetch', repoUrl, headBranch + ':' + pullBranch]; + var args = ['fetch', repoUrl, headBranch + ':' + pullBranch, '--no-tags']; return exec.spawnSyncStream(git_command, args); };