mirror of https://github.com/node-red/node-red.git
Merge pull request #4290 from kazuhitoyokoi/dev-fixgitpull
Fix git pull operation in project featurepull/4297/head
commit
89b8e88df3
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue