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
46 lines (38 loc) · 1.25 KB
/
clone.js
File metadata and controls
46 lines (38 loc) · 1.25 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
var NodeGit = require("../");
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;
if (options) {
remoteCallbacks = options.remoteCallbacks;
delete options.remoteCallbacks;
}
options = normalizeOptions(options, NodeGit.CloneOptions);
if (remoteCallbacks) {
options.remoteCallbacks =
normalizeOptions(remoteCallbacks, NodeGit.RemoteCallbacks);
}
// 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);
};