This might be duplicate, but I don't see any solution or proper documentation or Example. I'm trying to download a Git Hub repository to my local machine. The following is what I tried. I'm using org.kohsuke.github API. I don't see any proper method to download to local.
public void cloneRep() {
String login = "userid";
String password = "password";
String rep = "repository";
String localDir = "/home/myuser/repository/";
try {
System.out.println("Connecting...." + login + " : " + password);
GitHub gitHub = GitHub.connectUsingPassword(login, password);
boolean isValid = gitHub.isCredentialValid();
System.out.println("is Valid ? " + isValid);
if (isValid) {
GHRepository repository = gitHub.getRepository(rep);
//how to clone the repository to local directory?
}
} catch (Exception e) {
System.out.println("EXCEPTION....");
e.printStackTrace();
}
}
I know with org.eclipse.jgit.api.Git it is possible.
String remoteUrl = new StringBuffer().append("https").append(login)
.append(":").append(password).append("@github.com/")
.append(login).append("/").append(rep).toString();
org.eclipse.jgit.api.Git.cloneRepository().setURI(remoteUrl).setDirectory(localDir)
.call();
But that seems more complex. First I need to do authentication only. And then I need to download to local. I'm not interested to use both. If the API provides a better solution, I can use that.
IS there any solution?
JGit is already being discussed in stackoverflow https://stackoverflow.com/questions/tagged/jgit
get JGit libraries using your pom.xml or download the JAR files manually
And try this example
JGit: Cannot find a tutorial or simple example or correspondingly follow the url inside the discussion
To authenticate you can use CloneCommand with setNoCheckout(true);
c:\myfolder should not be created manually, it will be created automatically