Reputation: 525
Can I use JGit , without installing Git on my machine?
I was thinking whether it is necessary to have git installed before working on Jgit, or JGit provides a portable git version of its own?
Upvotes: 2
Views: 1121
Reputation: 170919
Yes, that's exactly the point of JGit: it's a pure Java implementation of Git, which can be easily used from JVM applications or libraries.
Upvotes: 5