1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix git pull operation in project feature

This commit is contained in:
Kazuhito Yokoi 2023-08-21 11:18:01 +09:00
parent c39d3db121
commit a7e80f351a

View File

@ -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);