Skip to content

Commit 0c4c8c0

Browse files
committed
Fix protocol usage for cloning GitHub's repository
Output on my machine: $ git clone git://github.com/lisa-lab/DeepLearningTutorials.git Cloning into 'DeepLearningTutorials'... fatal: unable to connect to github.com: github.com[0: 192.30.252.128]: errno=Connection refused However: $ git clone https://github.com/lisa-lab/DeepLearningTutorials.git Cloning into 'DeepLearningTutorials'... remote: Counting objects: 3652, done. remote: Total 3652 (delta 0), reused 0 (delta 0), pack-reused 3652 Receiving objects: 100% (3652/3652), 7.80 MiB | 1.77 MiB/s, done. Resolving deltas: 100% (2161/2161), done. Checking connectivity... done. I just used the GitHub's clone URL (default protocol is https)
1 parent d5f1a34 commit 0c4c8c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/gettingstarted.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Download
2020

2121
On each learning algorithm page, you will be able to download the corresponding files. If you want to download all of them at the same time, you can clone the git repository of the tutorial::
2222

23-
git clone git://github.com/lisa-lab/DeepLearningTutorials.git
23+
git clone https://github.com/lisa-lab/DeepLearningTutorials.git
2424

2525

2626
.. _datasets:

0 commit comments

Comments
 (0)