Как мне сделать git push с JGit?

Я пытаюсь создать приложение Java, которое позволяет пользователям использовать репозитории на основе Git. Я смог сделать это из командной строки, используя следующие команды:

git init
<create some files>
git add .
git commit
git remote add <remote repository name> <remote repository URI>
git push -u <remote repository name> master

это позволило мне создавать, добавлять и фиксировать содержимое в локальном репозитории и отправлять содержимое в удаленный репозиторий. Теперь я пытаюсь сделать то же самое в своем Java-коде, используя JGit. Я смог легко сделать git init, добавить и зафиксировать с помощью Jgit API.

Repository localRepo = new FileRepository(localPath);
this.git = new Git(localRepo);        
localRepo.create();  
git.add().addFilePattern(".").call();
git.commit().setMessage("test message").call();

опять же, все это работать отлично. Я не смог найти никакого примера или эквивалентного кода для git remote add и git push. Я смотрел на это поэтому вопрос.

testPush() завершается с сообщением об ошибке TransportException: origin not found. В других примерах я виделhttps://gist.github.com/2487157 do git clone до git push и я не понимаю, зачем это надо.

любые указатели на то, как я могу это сделать, будут оценены.

2 ответов


вы найдете в org.eclipse.jgit.test весь пример, который вам нужен:

  • RemoteconfigTest.java использует Config:

    config.setString("remote", "origin", "pushurl", "short:project.git");
    config.setString("url", "https://server/repos/", "name", "short:");
    RemoteConfig rc = new RemoteConfig(config, "origin");
    assertFalse(rc.getPushURIs().isEmpty());
    assertEquals("short:project.git", rc.getPushURIs().get(0).toASCIIString());
    
  • PushCommandTest.java иллюстрирует различные сценарии толчка,используя RemoteConfig.
    См.testTrackingUpdate() для полного примера pushing an отслеживание удаленной отделение.
    Выдержки:

    String trackingBranch = "refs/remotes/" + remote + "/master";
    RefUpdate trackingBranchRefUpdate = db.updateRef(trackingBranch);
    trackingBranchRefUpdate.setNewObjectId(commit1.getId());
    trackingBranchRefUpdate.update();
    
    URIish uri = new URIish(db2.getDirectory().toURI().toURL());
    remoteConfig.addURI(uri);
    remoteConfig.addFetchRefSpec(new RefSpec("+refs/heads/*:refs/remotes/"
        + remote + "/*"));
    remoteConfig.update(config);
    config.save();
    
    
    RevCommit commit2 = git.commit().setMessage("Commit to push").call();
    
    RefSpec spec = new RefSpec(branch + ":" + branch);
    Iterable<PushResult> resultIterable = git.push().setRemote(remote)
        .setRefSpecs(spec).call();
    

самый простой способ-использовать API фарфора JGit:

    Repository localRepo = new FileRepository(localPath);
    Git git = new Git(localRepo); 

    // add remote repo:
    RemoteAddCommand remoteAddCommand = git.remoteAdd();
    remoteAddCommand.setName("origin");
    remoteAddCommand.setUri(new URIish(httpUrl));
    // you can add more settings here if needed
    remoteAddCommand.call();

    // push to remote:
    PushCommand pushCommand = git.push();
    pushCommand.setCredentialsProvider(new UsernamePasswordCredentialsProvider("username", "password"));
    // you can add more settings here if needed
    pushCommand.call();