如何在jGit中使用fetch命令?

时间:2018-07-08 19:16:54

标签: java git jgit

这是我添加远程代码。

  FileRepositoryBuilder builder = new FileRepositoryBuilder();
            Repository repository = builder.setGitDir(gitdir)
                    .readEnvironment() // scan environment GIT_* variables
                    .findGitDir() // scan up the file system tree
                    .build();
            Git git = new Git(repository);

            StoredConfig config = git.getRepository().getConfig();
            config.setString("remote", "origin", "url", url);
            config.save();

现在如何通过jGit使用提取命令?

1 个答案:

答案 0 :(得分:0)

您可以使用JGit FetchCommand

git.fetch().setRemote("origin").call();