0
javaを使用してリモートGithubリポジトリを作成する必要があります(自分の資格情報を使用して).Jsonファイルをそのリポジトリにプッシュする必要があります。javaとgithub apiを使用してgithubリポジトリに接続する方法
私は、実施例で私を助けてくださいそれは
が動作していない私は小さなコード
GitHubClient client = new GitHubClient();
client.setCredentials("username", "password");
RepositoryService service = new RepositoryService(client);
Repository repo=new Repository(); repo.setName("newRepo");
service.createRepository(repo);
を書いたJGitを使用していくつかの例とhttp://www.codeaffine.com/2015/11/30/jgit-clone-repository/
のようないくつかの他の文献を見ました。それは本当に役に立ちます。