Skip to content

Commit

Permalink
Merge pull request #4290 from kazuhitoyokoi/dev-fixgitpull
Browse files Browse the repository at this point in the history
Fix git pull operation in project feature
  • Loading branch information
knolleary committed Aug 21, 2023
2 parents c39d3db + a7e80f3 commit 89b8e88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ module.exports = {
return runGitCommand(args,cwd);
},
pull: function(cwd,remote,branch,allowUnrelatedHistories,auth,gitUser) {
var args = ["pull"];
var args = ["pull", "--no-rebase"];
if (remote && branch) {
args.push(remote);
args.push(branch);
Expand Down

0 comments on commit 89b8e88

Please sign in to comment.