diff options
author | apparluk <52227507+apparluk@users.noreply.github.com> | 2020-10-14 04:09:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 20:09:03 -0600 |
commit | b998bd1a4a2c4e35a119ea73c7650a26e0060950 (patch) | |
tree | 8bc4bd260d53827da25e88b43fa2e03b389331d1 | |
parent | 81c73c1114c366c813689c351023a3f2cc39e50d (diff) | |
download | perl-b998bd1a4a2c4e35a119ea73c7650a26e0060950.tar.gz |
Replace ssh with https (#18229)
* use https in perlhack.pod
* https and ssh in perlhack.pod
* closing angle bracket
* links
* author
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | pod/perlhack.pod | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -407,6 +407,7 @@ Eric Brine <ikegami@adaelis.com> Eric E. Coe <Eric.Coe@oracle.com> Eric Fifer <egf7@columbia.edu> Eric Herman <eric@freesa.org> +Eric Lindblad <lindblad@gmx.com> Eric Melville Eric Promislow <ericp@ActiveState.com> Erich Rickheit diff --git a/pod/perlhack.pod b/pod/perlhack.pod index 032eb8bee0..1f66863485 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -78,6 +78,13 @@ L<https://help.github.com/en/articles/working-with-forks>. % git remote add fork git@github.com:MyUser/perl5.git +For more information, see L<"Connecting to GitHub with SSH"|https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/connecting-to-github-with-ssh>. + +If you'd rather use an HTTPS URL for your C<git push> see L<"Cloning with +HTTPS URLs"|https://docs.github.com/en/free-pro-team@latest/github/using-git/which-remote-url-should-i-use#cloning-with-https-urls>. + + % git remote add fork https://github.com/MyUser/perl5.git + Then, push your new branch to your fork. % git push -u fork mychange |