CodyBugstein
CodyBugstein

Reputation: 23322

How do you install JGit?

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

Answers (3)

Matthias Sohn
Matthias Sohn

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

Andre M
Andre M

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

Tunaki
Tunaki

Reputation: 137084

Everything is mentioned on this page. Quoting:

JGit can be installed from the EGit repository:

When you select "Install New Software..." in Eclipse, you should enter the URL: http://download.eclipse.org/egit/updates.

Upvotes: 1

Related Questions