summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2021-11-02 19:24:09 +0000
committerJames E Keenan <jkeenan@cpan.org>2021-11-09 22:28:38 +0000
commita85e04e2281234a61c051f8f3ff63bed7381902c (patch)
tree67d00bbacaf5169c37c84bfde487e35d257252fe
parent4a1b9dd524007193213d3919d6a331109608b90c (diff)
downloadperl-a85e04e2281234a61c051f8f3ff63bed7381902c.tar.gz
Unencrypted git protocol no longer supported by github.com
Reference: https://github.blog/2021-09-01-improving-git-protocol-security-github/ For: https://github.com/Perl/perl5/pull/19220
-rw-r--r--pod/perlgit.pod7
-rw-r--r--pod/perlhack.pod2
2 files changed, 3 insertions, 6 deletions
diff --git a/pod/perlgit.pod b/pod/perlgit.pod
index 2c7f5e85e2..c1e685305f 100644
--- a/pod/perlgit.pod
+++ b/pod/perlgit.pod
@@ -22,12 +22,9 @@ I<github.com>.
You can make a read-only clone of the repository by running:
- % git clone git://github.com/Perl/perl5.git perl
+ % git clone git@github.com:Perl/perl5.git perl
-This uses the git protocol (port 9418).
-
-If you cannot use the git protocol for firewall reasons, you can also
-clone via http:
+If you cannot use that for firewall reasons, you can also clone via http:
% git clone https://github.com/Perl/perl5.git perl
diff --git a/pod/perlhack.pod b/pod/perlhack.pod
index ff26192de9..d74346eca1 100644
--- a/pod/perlhack.pod
+++ b/pod/perlhack.pod
@@ -175,7 +175,7 @@ L<perlgit>.
You will need a copy of Git for your computer. You can fetch a copy of
the repository using the git protocol:
- % git clone git://github.com/Perl/perl5.git perl
+ % git clone git@github.com:Perl/perl5.git perl
This clones the repository and makes a local copy in the F<perl>
directory.