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
47 lines (39 loc) · 1.33 KB
/
clone.js
File metadata and controls
47 lines (39 loc) · 1.33 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
var NodeGit = require("../");
var shallowClone = NodeGit.Utils.shallowClone;
var normalizeFetchOptions = NodeGit.Utils.normalizeFetchOptions;
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 fetchOpts = normalizeFetchOptions(options && options.fetchOpts);
if (options) {
options = shallowClone(options);
delete options.fetchOpts;
}
options = normalizeOptions(options, NodeGit.CloneOptions);
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);
};