-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.js
More file actions
47 lines (39 loc) · 1.67 KB
/
index.js
File metadata and controls
47 lines (39 loc) · 1.67 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
// 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("../../../");
// To clone with two factor auth enabled, you have to use a GitHub OAuth token
// over HTTPS.
var GITHUB_TOKEN = "<GH_TOKEN>";
// Using the `clone` method from the `Git.Clone` module, bring down the NodeGit
// test repository from GitHub.
var cloneURL = "https://github.com/nodegit/private";
// 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; },
credentials: function() {
return NodeGit.Cred.userpassPlaintextNew(GITHUB_TOKEN, "x-oauth-basic");
}
}
};
// 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()));
});