Skip to content

Commit 29ba33e

Browse files
authored
Merge pull request #1223 from HonkingGoose/chapter_b_https
Chapter B-embedding-git http -> https.
2 parents c8088e0 + 66da18c commit 29ba33e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

book/B-embedding-git/sections/jgit.asc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(((jgit)))(((Java)))
44
If you want to use Git from within a Java program, there is a fully featured Git library called JGit.
55
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/[].
77

88
==== Getting Set Up
99

@@ -19,10 +19,10 @@ Probably the easiest is to use Maven – the integration is accomplished by addi
1919
</dependency>
2020
----
2121

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.
2323
Once this step is done, Maven will automatically acquire and use the JGit libraries that you'll need.
2424

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[].
2626
You can build them into your project by running a command like this:
2727

2828
[source,console]
@@ -155,6 +155,6 @@ Many other commands are available through the Git class, including but not limit
155155
This is only a small sampling of JGit's full capabilities.
156156
If you're interested and want to learn more, here's where to look for information and inspiration:
157157

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[].
159159
These are standard Javadoc, so your favorite JVM IDE will be able to install them locally, as well.
160160
* The JGit Cookbook at https://github.com/centic9/jgit-cookbook[] has many examples of how to do specific tasks with JGit.

book/B-embedding-git/sections/libgit2.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(((libgit2)))((("C")))
44
Another option at your disposal is to use Libgit2.
55
Libgit2 is a dependency-free implementation of Git, with a focus on having a nice API for use within other programs.
6-
You can find it at http://libgit2.github.com[].
6+
You can find it at https://libgit2.org[].
77

88
First, let's take a look at what the C API looks like.
99
Here's a whirlwind tour:
@@ -222,7 +222,7 @@ Objective-git is fully interoperable with Swift, so don't fear if you've left Ob
222222
===== pygit2
223223

224224
(((Python)))
225-
The bindings for Libgit2 in Python are called Pygit2, and can be found at http://www.pygit2.org/[].
225+
The bindings for Libgit2 in Python are called Pygit2, and can be found at https://www.pygit2.org[].
226226
Our example program:
227227

228228
[source,python]

0 commit comments

Comments
 (0)