You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/B-embedding-git/sections/jgit.asc
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
(((jgit)))(((Java)))
4
4
If you want to use Git from within a Java program, there is a fully featured Git library called JGit.
5
5
JGit is a relatively full-featured implementation of Git written natively in Java, and is widely used in the Java community.
6
-
The JGit project is under the Eclipse umbrella, and its home can be found at http://www.eclipse.org/jgit[].
6
+
The JGit project is under the Eclipse umbrella, and its home can be found at https://www.eclipse.org/jgit/[].
7
7
8
8
==== Getting Set Up
9
9
@@ -19,10 +19,10 @@ Probably the easiest is to use Maven – the integration is accomplished by addi
19
19
</dependency>
20
20
----
21
21
22
-
The `version` will most likely have advanced by the time you read this; check http://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit[] for updated repository information.
22
+
The `version` will most likely have advanced by the time you read this; check https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit[] for updated repository information.
23
23
Once this step is done, Maven will automatically acquire and use the JGit libraries that you'll need.
24
24
25
-
If you would rather manage the binary dependencies yourself, pre-built JGit binaries are available from http://www.eclipse.org/jgit/download[].
25
+
If you would rather manage the binary dependencies yourself, pre-built JGit binaries are available from https://www.eclipse.org/jgit/download[].
26
26
You can build them into your project by running a command like this:
27
27
28
28
[source,console]
@@ -155,6 +155,6 @@ Many other commands are available through the Git class, including but not limit
155
155
This is only a small sampling of JGit's full capabilities.
156
156
If you're interested and want to learn more, here's where to look for information and inspiration:
157
157
158
-
* The official JGit API documentation can be found at http://www.eclipse.org/jgit/documentation/[].
158
+
* The official JGit API documentation can be found at https://www.eclipse.org/jgit/documentation[].
159
159
These are standard Javadoc, so your favorite JVM IDE will be able to install them locally, as well.
160
160
* The JGit Cookbook at https://github.com/centic9/jgit-cookbook[] has many examples of how to do specific tasks with JGit.
0 commit comments