diff --git a/commands/version/lib/git-push.js b/commands/version/lib/git-push.js index 7ccbd955af..43be5e7a13 100644 --- a/commands/version/lib/git-push.js +++ b/commands/version/lib/git-push.js @@ -8,5 +8,5 @@ module.exports = gitPush; function gitPush(remote, branch, opts) { log.silly("gitPush", remote, branch); - return childProcess.exec("git", ["push", "--follow-tags", "--no-verify", remote, branch], opts); + return childProcess.exec("git", ["push", "--follow-tags", "--atomic", "--no-verify", remote, branch], opts); }