2017-09-20 11:30:07 +02:00
|
|
|
/**
|
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
var when = require('when');
|
|
|
|
var exec = require('child_process').exec;
|
|
|
|
var spawn = require('child_process').spawn;
|
2017-11-22 00:31:41 +01:00
|
|
|
var authResponseServer = require('./authServer').ResponseServer;
|
|
|
|
var clone = require('clone');
|
|
|
|
var path = require("path");
|
2017-09-20 11:30:07 +02:00
|
|
|
|
2017-11-22 00:31:41 +01:00
|
|
|
var gitCommand = "git";
|
|
|
|
var log;
|
2017-09-20 11:30:07 +02:00
|
|
|
|
2017-11-22 00:31:41 +01:00
|
|
|
// function execCommand(command,args,cwd) {
|
|
|
|
// return when.promise(function(resolve,reject) {
|
|
|
|
// var fullCommand = command+" "+args.join(" ");
|
|
|
|
// child = exec(fullCommand, {cwd: cwd, timeout:3000, killSignal: 'SIGTERM'}, function (error, stdout, stderr) {
|
|
|
|
// if (error) {
|
|
|
|
// reject(error);
|
|
|
|
// } else {
|
|
|
|
// resolve(stdout);
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// });
|
|
|
|
// }
|
2017-09-20 11:30:07 +02:00
|
|
|
|
2017-11-22 00:31:41 +01:00
|
|
|
function runGitCommand(args,cwd,env) {
|
|
|
|
log.trace(gitCommand + JSON.stringify(args));
|
2017-09-20 11:30:07 +02:00
|
|
|
return when.promise(function(resolve,reject) {
|
2017-11-22 00:31:41 +01:00
|
|
|
args.unshift("credential.helper=")
|
|
|
|
args.unshift("-c");
|
|
|
|
var child = spawn(gitCommand, args, {cwd:cwd, detached:true, env:env});
|
2017-09-20 11:30:07 +02:00
|
|
|
var stdout = "";
|
|
|
|
var stderr = "";
|
|
|
|
child.stdout.on('data', function(data) {
|
|
|
|
stdout += data;
|
|
|
|
});
|
|
|
|
|
|
|
|
child.stderr.on('data', function(data) {
|
|
|
|
stderr += data;
|
|
|
|
});
|
|
|
|
|
|
|
|
child.on('close', function(code) {
|
|
|
|
if (code !== 0) {
|
|
|
|
var err = new Error(stderr);
|
2017-11-22 00:31:41 +01:00
|
|
|
err.stdout = stdout;
|
|
|
|
err.stderr = stderr;
|
2017-09-20 11:30:07 +02:00
|
|
|
if (/fatal: could not read Username/.test(stderr)) {
|
|
|
|
err.code = "git_auth_failed";
|
|
|
|
} else if(/HTTP Basic: Access denied/.test(stderr)) {
|
|
|
|
err.code = "git_auth_failed";
|
2017-11-22 00:31:41 +01:00
|
|
|
} else if(/Connection refused/.test(stderr)) {
|
|
|
|
err.code = "git_connection_failed";
|
2017-09-20 11:30:07 +02:00
|
|
|
} else {
|
|
|
|
err.code = "git_error";
|
|
|
|
}
|
|
|
|
return reject(err);
|
|
|
|
}
|
|
|
|
resolve(stdout);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
function runGitCommandWithAuth(args,cwd,auth) {
|
|
|
|
return authResponseServer(auth).then(function(rs) {
|
|
|
|
var commandEnv = clone(process.env);
|
|
|
|
commandEnv.GIT_ASKPASS = path.join(__dirname,"node-red-ask-pass.sh");
|
|
|
|
commandEnv.NODE_RED_GIT_NODE_PATH = process.execPath;
|
|
|
|
commandEnv.NODE_RED_GIT_SOCK_PATH = rs.path;
|
|
|
|
commandEnv.NODE_RED_GIT_ASKPASS_PATH = path.join(__dirname,"authWriter.js");
|
|
|
|
return runGitCommand(args,cwd,commandEnv).finally(function() {
|
|
|
|
rs.close();
|
|
|
|
});
|
|
|
|
})
|
2017-09-20 11:30:07 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 01:18:20 +02:00
|
|
|
function cleanFilename(name) {
|
|
|
|
if (name[0] !== '"') {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
return name.substring(1,name.length-1);
|
|
|
|
}
|
|
|
|
function parseFilenames(name) {
|
|
|
|
var re = /([^ "]+|(".*?"))($| -> ([^ ]+|(".*"))$)/;
|
|
|
|
var m = re.exec(name);
|
|
|
|
var result = [];
|
|
|
|
if (m) {
|
|
|
|
result.push(cleanFilename(m[1]));
|
|
|
|
if (m[4]) {
|
|
|
|
result.push(cleanFilename(m[4]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
function getBranchInfo(localRepo) {
|
|
|
|
return runGitCommand(["status","--porcelain","-b"],localRepo).then(function(output) {
|
|
|
|
var lines = output.split("\n");
|
|
|
|
var unknownDirs = [];
|
|
|
|
var branchLineRE = /^## (.+?)($|\.\.\.(.+?)($| \[(ahead (\d+))?.*?(behind (\d+))?\]))/m;
|
|
|
|
var m = branchLineRE.exec(output);
|
|
|
|
var result = {}; //commits:{}};
|
|
|
|
if (m) {
|
|
|
|
result.local = m[1];
|
|
|
|
if (m[3]) {
|
|
|
|
result.remote = m[3];
|
|
|
|
}
|
|
|
|
// if (m[6] !== undefined) {
|
|
|
|
// result.commits.ahead = parseInt(m[6]);
|
|
|
|
// }
|
|
|
|
// if (m[8] !== undefined) {
|
|
|
|
// result.commits.behind = parseInt(m[8]);
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
function getStatus(localRepo) {
|
2017-10-07 01:18:20 +02:00
|
|
|
// parseFilename('"test with space"');
|
|
|
|
// parseFilename('"test with space" -> knownFile.txt');
|
|
|
|
// parseFilename('"test with space" -> "un -> knownFile.txt"');
|
2017-11-22 00:31:41 +01:00
|
|
|
var result = {
|
|
|
|
files: {},
|
|
|
|
commits: {},
|
|
|
|
branches: {}
|
|
|
|
}
|
|
|
|
return runGitCommand(['rev-list', 'HEAD', '--count'],localRepo).then(function(count) {
|
|
|
|
result.commits.total = parseInt(count);
|
|
|
|
}).then(function() {
|
|
|
|
return runGitCommand(["ls-files","--cached","--others","--exclude-standard"],localRepo).then(function(output) {
|
2017-10-07 01:18:20 +02:00
|
|
|
var lines = output.split("\n");
|
2017-11-22 00:31:41 +01:00
|
|
|
lines.forEach(function(l) {
|
|
|
|
if (l==="") {
|
2017-10-07 01:18:20 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
var fullName = cleanFilename(l);
|
|
|
|
// parseFilename(l);
|
|
|
|
var parts = fullName.split("/");
|
|
|
|
var p = result.files;
|
|
|
|
var name;
|
|
|
|
for (var i = 0;i<parts.length-1;i++) {
|
|
|
|
var name = parts.slice(0,i+1).join("/")+"/";
|
|
|
|
if (!p.hasOwnProperty(name)) {
|
|
|
|
p[name] = {
|
|
|
|
type:"d"
|
|
|
|
}
|
|
|
|
}
|
2017-10-07 01:18:20 +02:00
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
result.files[fullName] = {
|
|
|
|
type: /\/$/.test(fullName)?"d":"f"
|
2017-10-07 01:18:20 +02:00
|
|
|
}
|
|
|
|
})
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(["status","--porcelain","-b"],localRepo).then(function(output) {
|
|
|
|
var lines = output.split("\n");
|
|
|
|
var unknownDirs = [];
|
|
|
|
var branchLineRE = /^## (.+?)($|\.\.\.(.+?)($| \[(ahead (\d+))?.*?(behind (\d+))?\]))/;
|
|
|
|
lines.forEach(function(line) {
|
|
|
|
if (line==="") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (line[0] === "#") {
|
|
|
|
var m = branchLineRE.exec(line);
|
|
|
|
if (m) {
|
|
|
|
result.branches.local = m[1];
|
|
|
|
if (m[3]) {
|
|
|
|
result.branches.remote = m[3];
|
|
|
|
result.commits.ahead = 0;
|
|
|
|
result.commits.behind = 0;
|
|
|
|
}
|
|
|
|
if (m[6] !== undefined) {
|
|
|
|
result.commits.ahead = parseInt(m[6]);
|
|
|
|
}
|
|
|
|
if (m[8] !== undefined) {
|
|
|
|
result.commits.behind = parseInt(m[8]);
|
|
|
|
}
|
2017-10-07 01:18:20 +02:00
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
var status = line.substring(0,2);
|
|
|
|
var fileName;
|
|
|
|
var names;
|
|
|
|
if (status !== '??') {
|
|
|
|
names = parseFilenames(line.substring(3));
|
|
|
|
} else {
|
|
|
|
names = [cleanFilename(line.substring(3))];
|
|
|
|
}
|
|
|
|
fileName = names[0];
|
|
|
|
if (names.length > 1) {
|
|
|
|
fileName = names[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseFilename(fileName);
|
|
|
|
if (fileName.charCodeAt(0) === 34) {
|
|
|
|
fileName = fileName.substring(1,fileName.length-1);
|
|
|
|
}
|
|
|
|
if (result.files.hasOwnProperty(fileName)) {
|
|
|
|
result.files[fileName].status = status;
|
|
|
|
} else {
|
|
|
|
result.files[fileName] = {
|
|
|
|
type: "f",
|
|
|
|
status: status
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (names.length > 1) {
|
|
|
|
result.files[fileName].oldName = names[0];
|
|
|
|
}
|
|
|
|
if (status === "??" && fileName[fileName.length-1] === '/') {
|
|
|
|
unknownDirs.push(fileName);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
var allFilenames = Object.keys(result.files);
|
|
|
|
allFilenames.forEach(function(f) {
|
|
|
|
var entry = result.files[f];
|
|
|
|
if (!entry.hasOwnProperty('status')) {
|
|
|
|
unknownDirs.forEach(function(uf) {
|
|
|
|
if (f.startsWith(uf)) {
|
|
|
|
entry.status = "??"
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
// console.log(files);
|
|
|
|
return result;
|
2017-10-07 01:18:20 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-10 00:37:19 +02:00
|
|
|
function parseLog(log) {
|
|
|
|
var lines = log.split("\n");
|
2017-11-22 00:31:41 +01:00
|
|
|
var currentCommit = {};
|
2017-10-10 00:37:19 +02:00
|
|
|
var commits = [];
|
|
|
|
lines.forEach(function(l) {
|
2017-11-22 00:31:41 +01:00
|
|
|
if (l === "-----") {
|
|
|
|
commits.push(currentCommit);
|
2017-10-10 00:37:19 +02:00
|
|
|
currentCommit = {}
|
2017-11-22 00:31:41 +01:00
|
|
|
return;
|
2017-10-10 00:37:19 +02:00
|
|
|
}
|
|
|
|
var m = /^(.*): (.*)$/.exec(l);
|
|
|
|
if (m) {
|
2017-11-22 00:31:41 +01:00
|
|
|
if (m[1] === 'refs' && m[2]) {
|
|
|
|
currentCommit[m[1]] = m[2].split(",").map(function(v) { return v.trim() });
|
|
|
|
} else {
|
|
|
|
if (m[1] === 'parents') {
|
|
|
|
currentCommit[m[1]] = m[2].split(" ");
|
|
|
|
} else {
|
|
|
|
currentCommit[m[1]] = m[2];
|
|
|
|
}
|
|
|
|
}
|
2017-10-10 00:37:19 +02:00
|
|
|
}
|
|
|
|
});
|
2017-11-22 00:31:41 +01:00
|
|
|
return commits;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRemotes(cwd) {
|
|
|
|
return runGitCommand(['remote','-v'],cwd).then(function(output) {
|
|
|
|
var result;
|
|
|
|
if (output.length > 0) {
|
|
|
|
result = {};
|
|
|
|
var remoteRE = /^(.+)\t(.+) \((.+)\)$/gm;
|
|
|
|
var m;
|
|
|
|
while ((m = remoteRE.exec(output)) !== null) {
|
|
|
|
result[m[1]] = result[m[1]]||{};
|
|
|
|
result[m[1]][m[3]] = m[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function getBranches(cwd, remote) {
|
|
|
|
var args = ['branch','--no-color'];
|
|
|
|
if (remote) {
|
|
|
|
args.push('-r');
|
2017-10-10 00:37:19 +02:00
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(args,cwd).then(function(output) {
|
|
|
|
var branches = [];
|
|
|
|
var lines = output.split("\n");
|
|
|
|
branches = lines.map(function(l) { return l.substring(2)})
|
|
|
|
.filter(function(l) {
|
|
|
|
return !/HEAD ->/.test(l) && (l.length > 0)
|
|
|
|
});
|
|
|
|
return {branches:branches};
|
|
|
|
})
|
|
|
|
}
|
|
|
|
function getBranchStatus(cwd,remoteBranch) {
|
|
|
|
var commands = [
|
|
|
|
// #commits master ahead
|
|
|
|
runGitCommand(['rev-list', 'HEAD','^'+remoteBranch, '--count'],cwd),
|
|
|
|
// #commits master behind
|
|
|
|
runGitCommand(['rev-list', '^HEAD',remoteBranch, '--count'],cwd)
|
|
|
|
];
|
|
|
|
return when.all(commands).then(function(results) {
|
|
|
|
return {
|
|
|
|
commits: {
|
|
|
|
ahead: parseInt(results[0]),
|
|
|
|
behind: parseInt(results[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2017-10-10 00:37:19 +02:00
|
|
|
}
|
|
|
|
|
2017-09-20 11:30:07 +02:00
|
|
|
module.exports = {
|
2017-11-22 00:31:41 +01:00
|
|
|
init: function(_settings,_runtime) {
|
|
|
|
log = _runtime.log
|
|
|
|
},
|
2017-09-20 11:30:07 +02:00
|
|
|
initRepo: function(cwd) {
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(["init"],cwd);
|
|
|
|
},
|
|
|
|
setUpstream: function(cwd,remoteBranch) {
|
|
|
|
var args = ["branch","--set-upstream-to",remoteBranch];
|
|
|
|
return runGitCommand(args,cwd);
|
|
|
|
},
|
2017-11-23 21:52:15 +01:00
|
|
|
pull: function(cwd,remoteBranch,auth) {
|
2017-11-22 00:31:41 +01:00
|
|
|
var args = ["pull"];
|
|
|
|
var m = /^(.*?)\/(.*)$/.exec(remoteBranch);
|
|
|
|
if (m) {
|
|
|
|
args.push(m[1]);
|
|
|
|
args.push(m[2])
|
|
|
|
}
|
2017-11-23 21:52:15 +01:00
|
|
|
var promise;
|
|
|
|
if (auth) {
|
|
|
|
promise = runGitCommandWithAuth(args,cwd,auth);
|
|
|
|
} else {
|
|
|
|
promise = runGitCommand(args,cwd)
|
|
|
|
}
|
|
|
|
return promise.catch(function(err) {
|
2017-11-22 00:31:41 +01:00
|
|
|
if (/CONFLICT/.test(err.stdout)) {
|
|
|
|
var e = new Error("NLS: pull failed - merge conflict");
|
|
|
|
e.code = "git_pull_merge_conflict";
|
|
|
|
throw e;
|
|
|
|
} else if (/Please commit your changes or stash/.test(err.message)) {
|
|
|
|
var e = new Error("NLS: Pull failed - local changes would be overwritten");
|
|
|
|
e.code = "git_pull_overwrite";
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
});
|
2017-09-20 11:30:07 +02:00
|
|
|
},
|
2017-11-23 01:27:13 +01:00
|
|
|
push: function(cwd,remoteBranch,setUpstream, auth) {
|
2017-11-22 00:31:41 +01:00
|
|
|
var args = ["push"];
|
|
|
|
var m = /^(.*?)\/(.*)$/.exec(remoteBranch);
|
|
|
|
if (m) {
|
|
|
|
if (setUpstream) {
|
|
|
|
args.push("-u");
|
|
|
|
}
|
|
|
|
args.push(m[1]);
|
|
|
|
args.push("HEAD:"+m[2]);
|
|
|
|
} else {
|
|
|
|
args.push("origin");
|
2017-09-20 11:30:07 +02:00
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
args.push("--porcelain");
|
2017-11-23 01:27:13 +01:00
|
|
|
var promise;
|
|
|
|
if (auth) {
|
|
|
|
promise = runGitCommandWithAuth(args,cwd,auth);
|
|
|
|
} else {
|
|
|
|
promise = runGitCommand(args,cwd)
|
|
|
|
}
|
|
|
|
return promise.catch(function(err) {
|
2017-11-22 00:31:41 +01:00
|
|
|
if (err.code === 'git_error') {
|
|
|
|
if (/^!.*non-fast-forward/m.test(err.stdout)) {
|
|
|
|
err.code = 'git_push_failed';
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
});
|
2017-09-20 11:30:07 +02:00
|
|
|
},
|
2017-11-23 01:27:13 +01:00
|
|
|
clone: function(remote, auth, cwd) {
|
2017-11-22 00:31:41 +01:00
|
|
|
var args = ["clone",remote.url];
|
|
|
|
if (remote.name) {
|
|
|
|
args.push("-o");
|
|
|
|
args.push(remote.name);
|
|
|
|
}
|
|
|
|
if (remote.branch) {
|
|
|
|
args.push("-b");
|
|
|
|
args.push(remote.branch);
|
|
|
|
}
|
|
|
|
args.push(".");
|
2017-11-23 01:27:13 +01:00
|
|
|
if (auth) {
|
|
|
|
return runGitCommandWithAuth(args,cwd,auth);
|
2017-11-22 00:31:41 +01:00
|
|
|
} else {
|
|
|
|
return runGitCommand(args,cwd);
|
2017-10-17 00:23:50 +02:00
|
|
|
}
|
2017-10-07 01:18:20 +02:00
|
|
|
},
|
2017-11-22 00:31:41 +01:00
|
|
|
getStatus: getStatus,
|
2017-10-25 16:26:24 +02:00
|
|
|
getFile: function(cwd, filePath, treeish) {
|
|
|
|
var args = ["show",treeish+":"+filePath];
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(args,cwd);
|
|
|
|
},
|
|
|
|
getFiles: function(cwd) {
|
|
|
|
return getStatus(cwd).then(function(status) {
|
|
|
|
return status.files;
|
|
|
|
})
|
2017-10-25 16:26:24 +02:00
|
|
|
},
|
2017-10-07 01:18:20 +02:00
|
|
|
stageFile: function(cwd,file) {
|
|
|
|
var args = ["add"];
|
|
|
|
if (Array.isArray(file)) {
|
|
|
|
args = args.concat(file);
|
|
|
|
} else {
|
|
|
|
args.push(file);
|
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(args,cwd);
|
2017-10-07 01:18:20 +02:00
|
|
|
},
|
|
|
|
unstageFile: function(cwd, file) {
|
|
|
|
var args = ["reset","--"];
|
|
|
|
if (file) {
|
|
|
|
args.push(file);
|
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(args,cwd);
|
2017-10-07 01:18:20 +02:00
|
|
|
},
|
|
|
|
commit: function(cwd, message) {
|
|
|
|
var args = ["commit","-m",message];
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(args,cwd);
|
2017-10-09 01:11:07 +02:00
|
|
|
},
|
|
|
|
getFileDiff(cwd,file,type) {
|
|
|
|
var args = ["diff"];
|
|
|
|
if (type === "tree") {
|
|
|
|
// nothing else to do
|
|
|
|
} else if (type === "index") {
|
|
|
|
args.push("--cached");
|
|
|
|
}
|
|
|
|
args.push(file);
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(args,cwd);
|
|
|
|
},
|
2017-11-23 01:27:13 +01:00
|
|
|
fetch: function(cwd,auth) {
|
|
|
|
var args = ["fetch"];
|
|
|
|
if (auth) {
|
|
|
|
return runGitCommandWithAuth(args,cwd,auth);
|
|
|
|
} else {
|
|
|
|
return runGitCommand(args,cwd);
|
|
|
|
}
|
2017-10-10 00:37:19 +02:00
|
|
|
},
|
|
|
|
getCommits: function(cwd,options) {
|
2017-11-22 00:31:41 +01:00
|
|
|
var args = ["log", "--format=sha: %H%nparents: %p%nrefs: %D%nauthor: %an%ndate: %ct%nsubject: %s%n-----"];
|
|
|
|
var limit = parseInt(options.limit) || 20;
|
|
|
|
args.push("-n "+limit);
|
|
|
|
var before = options.before;
|
|
|
|
if (before) {
|
|
|
|
args.push(before);
|
|
|
|
}
|
|
|
|
var commands = [
|
|
|
|
runGitCommand(['rev-list', 'HEAD', '--count'],cwd),
|
|
|
|
runGitCommand(args,cwd).then(parseLog)
|
|
|
|
];
|
|
|
|
return when.all(commands).then(function(results) {
|
|
|
|
var result = results[0];
|
|
|
|
result.count = results[1].length;
|
|
|
|
result.before = before;
|
|
|
|
result.commits = results[1];
|
|
|
|
return {
|
|
|
|
count: results[1].length,
|
|
|
|
commits: results[1],
|
|
|
|
before: before,
|
|
|
|
total: parseInt(results[0])
|
|
|
|
};
|
|
|
|
})
|
2017-10-10 00:37:19 +02:00
|
|
|
},
|
|
|
|
getCommit: function(cwd,sha) {
|
|
|
|
var args = ["show",sha];
|
2017-11-22 00:31:41 +01:00
|
|
|
return runGitCommand(args,cwd);
|
|
|
|
},
|
|
|
|
abortMerge: function(cwd) {
|
|
|
|
return runGitCommand(['merge','--abort'],cwd);
|
|
|
|
},
|
|
|
|
getRemotes: getRemotes,
|
|
|
|
getBranches: getBranches,
|
|
|
|
getBranchInfo: getBranchInfo,
|
|
|
|
checkoutBranch: function(cwd, branchName, isCreate) {
|
|
|
|
var args = ['checkout'];
|
|
|
|
if (isCreate) {
|
|
|
|
args.push('-b');
|
|
|
|
}
|
|
|
|
args.push(branchName);
|
|
|
|
return runGitCommand(args,cwd);
|
|
|
|
},
|
|
|
|
getBranchStatus: getBranchStatus
|
2017-09-20 11:30:07 +02:00
|
|
|
}
|