-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit.js
More file actions
68 lines (62 loc) · 1.55 KB
/
git.js
File metadata and controls
68 lines (62 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
var util = require('util')
var exec = require('child_process').exec;
var child;
var winston = require('winston');
var logger = new (winston.Logger)({
transports: [
new (winston.transports.Console)(),
new (winston.transports.File)({ filename: 'repo.log' })
]
});
exports.pull = function(path, callback) {
var res = [];
child = exec("cd " + path + " && git pull", function (error, stdout, stderr) {
if (error !== null) {
logger.error('exec error: ' + error);
res.error = error;
} else {
logger.info('stdout: ' + stdout);
res.stdout = stdout;
}
callback(res);
});
}
exports.push = function(path, callback) {
var res = [];
child = exec("cd " + path + " && git push", function (error, stdout, stderr) {
if (error !== null) {
logger.error('exec error: ' + error);
res.error = error;
} else {
logger.info('stdout: ' + stdout);
res.stdout = stdout;
}
callback(res);
});
}
exports.addAll = function(path, callback) {
var res = [];
child = exec("cd " + path + " && git add -A", function (error, stdout, stderr) {
if (error !== null) {
logger.error('exec error: ' + error);
res.error = error;
} else {
logger.info('stdout: ' + stdout);
res.stdout = stdout;
}
callback(res);
});
}
exports.exec = function(path, command, callback) {
var res = [];
child = exec("cd " + path + " && git " + command, function (error, stdout, stderr) {
if (error !== null) {
logger.error('exec error: ' + error);
res.error = error;
} else {
logger.info('stdout: ' + stdout);
res.stdout = stdout;
}
callback(res);
});
}