forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclone.js
More file actions
60 lines (49 loc) · 1.6 KB
/
Copy pathclone.js
File metadata and controls
60 lines (49 loc) · 1.6 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
var NodeGit = require("../");
var shallowClone = NodeGit.Utils.shallowClone;
var normalizeOptions = NodeGit.Utils.normalizeOptions;
var Clone = NodeGit.Clone;
var _clone = Clone.clone;
/**
* Patch repository cloning to automatically coerce objects.
*
* @async
* @param {String} url url of the repository
* @param {String} local_path local path to store repository
* @param {CloneOptions} [options]
* @return {Repository} repo
*/
Clone.clone = function(url, local_path, options) {
var remoteCallbacks = {};
var fetchOpts = {};
if (options) {
options = shallowClone(options);
if (options.fetchOpts) {
fetchOpts = shallowClone(options.fetchOpts);
}
delete options.fetchOpts;
}
options = normalizeOptions(options, NodeGit.CloneOptions);
if (fetchOpts.callbacks) {
remoteCallbacks = shallowClone(fetchOpts.callbacks);
delete fetchOpts.callbacks;
}
fetchOpts = normalizeOptions(fetchOpts, NodeGit.FetchOptions);
fetchOpts.callbacks =
normalizeOptions(remoteCallbacks, NodeGit.RemoteCallbacks);
if (options) {
options.fetchOpts = fetchOpts;
}
// This is required to clean up after the clone to avoid file locking
// issues in Windows and potentially other issues we don't know about.
var freeRepository = function(repository) {
repository.free();
};
// We want to provide a valid repository object, so reopen the repository
// after clone and cleanup.
var openRepository = function() {
return NodeGit.Repository.open(local_path);
};
return _clone.call(this, url, local_path, options)
.then(freeRepository)
.then(openRepository);
};