In order to run examples, you will need to Install NodeGit first.
SSH w/ Agent
This guide explains how to clone a repository, and in the case of failure, attempt to open the existing path.
Requiring NodeGit
In the guides directory, we like to keep our NodeGit relative to the project root.
var NodeGit = require("../../../");
However, in your project you will most likely be using the following command:
var NodeGit = require("nodegit");
Clone URL
The first argument to the clone
method is a URL.
In this example we’re going to clone one of our test repositories from GitHub. You could easily substitute this with any valid Git repository that is accessible by SSH.
var cloneURL = "git@github.com:nodegit/test";
Clone path
The second argument to the clone
method is a path.
Ideally your application will clone a repository into the same folder path regardless of how or where you execute it from. Paths are relative to the current working directory in NodeGit, so you will need to normalize it first.
This is very simple in Node:
var localPath = require("path").join(__dirname, "tmp");
Now this tmp
directory will be created along side your script, no matter how
or where you execute it from.
Clone options
The third argument to the clone
method is an optional simple object.
var cloneOptions = {};
GitHub certificate issue in OS X
Unfortunately in OS X there is a problem where libgit2 is unable to look up GitHub certificates correctly. In order to bypass this problem, we’re going to passthrough the certificate check.
Note: this is not a problem with Windows or Linux
cloneOptions.fetchOpts = {
callbacks: {
certificateCheck: function() { return 0; }
}
};
SSH credentials via agent
In order to authorize the clone operation, we’ll need to respond to a low-level callback that expects credentials to be passed.
This function will be attached below the above certificateCheck
, and will
respond back with the credentials from the agent. You’ll notice we handle
the second argument passed to credentials, userName
.
The fetchOpts
object now looks like this:
cloneOptions.fetchOpts = {
callbacks: {
certificateCheck: function() { return 0; },
credentials: function(url, userName) {
return NodeGit.Cred.sshKeyFromAgent(userName);
}
}
};
There are many other methods you can use to authorize the SSH connection without using an agent. For now they are documented in the unit tests.
Invoking the clone method
You can easily invoke our top-level Clone as a function passing along the three aforementioned arguments.
var cloneRepository = NodeGit.Clone(cloneURL, localPath, cloneOptions);
Notice how we store the return value from Git.Clone
. This is a
Promise to represent the asynchronous operation.
It offers finer control flow by allowing us to capture errors and fallback if
there is a clone failure.
Handling clone failure
A naive way to handle a clone failure is to try opening the same path. Clones will most commonly fail when the directory already exists. We can define a function to attempt opening in this case.
var errorAndAttemptOpen = function() {
return NodeGit.Repository.open(localPath);
};
This will be called as part of the Promise resolution in the final step.
The Promise chain
Lastly in our clone operation, we’ll assemble a Promise chain to handle errors
and work with the Git.Repository
instance result.
cloneRepository.catch(errorAndAttemptOpen)
.then(function(repository) {
// Access any repository methods here.
console.log("Is the repository bare? %s", Boolean(repository.isBare()));
});