From 0d57591ae54d1160f1cd0322e9271d3a1cb1197c Mon Sep 17 00:00:00 2001 From: Joseph Ward <88321542+joe-dw@users.noreply.github.com> Date: Wed, 24 Sep 2025 14:34:08 +0100 Subject: [PATCH 1/3] Update README.md Replaced SSH with https git links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b232e4..d556270 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ brew install git autoconf automake curl GMP graphviz libtool Now, to install GAP and PackageManager, open a terminal window and enter the following: ```bash cd ~ -git clone git@github.com:gap-system/gap.git +git clone https://github.com/gap-system/gap cd gap ./autogen.sh ./configure @@ -63,7 +63,7 @@ mkdir .gap cd .gap mkdir pkg cd pkg -git clone git@github.com:gap-packages/PackageManager.git +git clone https://github.com/gap-packages/PackageManager cd ~/gap ./gap --bare ``` From 05ea8f49a9a4f489ca5d91425d75e8528189dd68 Mon Sep 17 00:00:00 2001 From: Joseph Ward <88321542+joe-dw@users.noreply.github.com> Date: Wed, 24 Sep 2025 14:45:53 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d556270..29a347e 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,25 @@ On a Mac, you can get the required software by installing Homebrew, and running: brew install git autoconf automake curl GMP graphviz libtool ``` -Now, to install GAP and PackageManager, open a terminal window and enter the following: +Now, to install GAP and PackageManager, open a terminal window and enter the following, choosing either the SSH or HTTPS git links: ```bash +#SSH links +cd ~ +git clone git@github.com:gap-system/gap.git +cd gap +./autogen.sh +./configure +make +cd ~/ +mkdir .gap +cd .gap +mkdir pkg +cd pkg +git clone git@github.com:gap-packages/PackageManager.git +cd ~/gap +./gap --bare + +#HTTPS links cd ~ git clone https://github.com/gap-system/gap cd gap @@ -68,6 +85,7 @@ cd ~/gap ./gap --bare ``` + In the GAP window that opens, enter the following: ```gap LoadPackage("PackageManager"); From cbe70fe9dc04e8273dad24285e90b312fccd445a Mon Sep 17 00:00:00 2001 From: Joseph Ward <88321542+joe-dw@users.noreply.github.com> Date: Wed, 24 Sep 2025 14:46:27 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 29a347e..f42a21d 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,9 @@ cd pkg git clone git@github.com:gap-packages/PackageManager.git cd ~/gap ./gap --bare +``` +```bash #HTTPS links cd ~ git clone https://github.com/gap-system/gap