Reputation: 23322
I read about this nice Eclipse plugin called JGit which allows one to use Git without installing it on the machine and commit from within Eclipse.
However, on their page, there are no instructions on how to install it. I've also tried "Install New Software" in Eclipse, but it was unable to find JGit.
How do you install it?
Upvotes: 1
Views: 2941
Reputation: 411
JGit is a library implementing git in Java, it also provides a command line tool, if you want integration into Eclipse you should install EGit which uses JGit to provide git integration in Eclipse
Upvotes: 0
Reputation: 7536
Take a look at EGit instead. JGit is the base API, while EGit is the Eclipse integration.
Take a look at this response too: installing EGit under Eclipse Luna (4.4.1)
Upvotes: 1
Reputation: 137084
Everything is mentioned on this page. Quoting:
JGit can be installed from the EGit repository:
- Main Site: http://download.eclipse.org/egit/updates (Recommended)
- Mars Site (Mars.1 currently has JGit 4.0.3): http://download.eclipse.org/releases/mars
When you select "Install New Software..." in Eclipse, you should enter the URL: http://download.eclipse.org/egit/updates
.
Upvotes: 1