Skip to content
This repository has been archived by the owner on Nov 4, 2022. It is now read-only.

Commit

Permalink
Don't pull tags on fetching remote branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
henvic committed Jun 22, 2016
1 parent b83a284 commit 87082d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand Down

0 comments on commit 87082d3

Please sign in to comment.