about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-03-28 12:47:42 +0200
committerGitHub <noreply@github.com>2022-03-28 12:47:42 +0200
commit2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5 (patch)
tree1be04d408ff6fea211b72d0d1e9267b20dcb8942 /pkgs/applications/science
parent32af6c6281812fa4f9c1313bc3676563fcf2f7d5 (diff)
parent97f06b5e0b3906e6f0141d85dcd5ab3aa2a55816 (diff)
downloadnixlib-2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5.tar
nixlib-2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5.tar.gz
nixlib-2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5.tar.bz2
nixlib-2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5.tar.lz
nixlib-2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5.tar.xz
nixlib-2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5.tar.zst
nixlib-2f1e03cb2b4ce0d8823199f260e619bf4d19a6b5.zip
Merge pull request #165691 from lucc/github-removed-unencrypted-git
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/sage/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/sage/README.md b/pkgs/applications/science/math/sage/README.md
index 26e91fc63133..c3a81c2109ee 100644
--- a/pkgs/applications/science/math/sage/README.md
+++ b/pkgs/applications/science/math/sage/README.md
@@ -17,7 +17,7 @@ If the build broke as a result of a package update, try those solutions in order
 - fix the problem yourself. First clone the sagemath source and then check out the sage version you want to patch:
 
 ```
-[user@localhost ~]$ git clone git://github.com/sagemath/sage.git
+[user@localhost ~]$ git clone https://github.com/sagemath/sage.git
 [user@localhost ~]$ cd sage
 [user@localhost sage]$ git checkout 8.2 # substitute the relevant version here
 ```
@@ -41,7 +41,7 @@ You can [login the sage trac using GitHub](https://trac.sagemath.org/login). You
 Here's the gist, assuming you want to use ssh key authentication. First, [add your public ssh key](https://trac.sagemath.org/prefs/sshkeys). Then:
 
 ```
-[user@localhost ~]$ git clone git://github.com/sagemath/sage.git
+[user@localhost ~]$ git clone https://github.com/sagemath/sage.git
 [user@localhost ~]$ cd sage
 [user@localhost sage]$ git remote add trac git@trac.sagemath.org:sage.git -t master
 [user@localhost sage]$ git checkout -b u/gh-<your-github-username>/<your-branch-name> develop