Home > Blockchain >  JGit - Github - Create Remote Repository?
JGit - Github - Create Remote Repository?

Time:06-27

Like title says, is there a way to remotely create a repository on Github through JGit on my local machine? There is an identical question that is 9 years old but I was hoping support for it had been added since then. I also found this question that details how it can be done through CLI.

I would like to avoid having to do it through CLI (or the hub tool) just so I don't have to handle external calls in the code.

CodePudding user response:

After some digging I found a Java library that had better support than JGit for configuring remotely, switched over to this: https://github-api.kohsuke.org/

  • Related