-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.js
More file actions
40 lines (33 loc) · 1.43 KB
/
index.js
File metadata and controls
40 lines (33 loc) · 1.43 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
// Require in NodeGit, since we want to use the local copy, we're using a
// relative path. In your project, you will use:
//
// var NodeGit = require("nodegit");
var NodeGit = require("../../../");
// Using the `clone` method from the `Git.Clone` module, bring down the NodeGit
// test repository from GitHub.
var cloneURL = "https://github.com/nodegit/test";
// Ensure that the `tmp` directory is local to this file and not the CWD.
var localPath = require("path").join(__dirname, "tmp");
// Simple object to store clone options.
var cloneOptions = {};
// This is a required callback for OS X machines. There is a known issue
// with libgit2 being able to verify certificates from GitHub.
cloneOptions.fetchOpts = {
callbacks: {
certificateCheck: function() { return 0; }
}
};
// Invoke the clone operation and store the returned Promise.
var cloneRepository = NodeGit.Clone(cloneURL, localPath, cloneOptions);
// If the repository already exists, the clone above will fail. You can simply
// open the repository in this case to continue execution.
var errorAndAttemptOpen = function() {
return NodeGit.Repository.open(localPath);
};
// Once the repository has been cloned or opened, you can work with a returned
// `Git.Repository` instance.
cloneRepository.catch(errorAndAttemptOpen)
.then(function(repository) {
// Access any repository methods here.
console.log("Is the repository bare? %s", Boolean(repository.isBare()));
});