Change documentation for git clone from git:// to http://
authorColin Clark <colin.clark@cclark.uk>
Sat, 2 Dec 2023 14:01:24 +0000 (14:01 +0000)
committerColin Clark <colin.clark@cclark.uk>
Sat, 2 Dec 2023 14:01:24 +0000 (14:01 +0000)
Change clone documentation from:
git://git.geeqie.org/geeqie.git
to:
http://git.geeqie.org/git/geeqie.git

Access to git:// is faster but is limited to some areas for security
reasons.

Developers will know how to access it anyway.

README.md
geeqie-install-debian.sh

index f64ad21..a420725 100644 (file)
--- a/README.md
+++ b/README.md
@@ -161,9 +161,7 @@ chmod +x geeqie-install-debian.sh
 
 If you wish to compile the sources yourself you may download the latest version (if you have installed git) from here:
 
-Either: `git clone git://git.geeqie.org/geeqie.git`
-
-Or: `git clone http://git.geeqie.org/git/geeqie.git`
+`git clone http://git.geeqie.org/git/geeqie.git`
 
 ### Compiling and Installing
 
index c6e4689..12eab7c 100755 (executable)
@@ -488,7 +488,7 @@ printf '%b\n' "#Getting new sources from server..." > "$zen_pipe"
 
 if [ "$mode" = "install" ]
 then
-       if ! git clone git://geeqie.org/geeqie.git >> "$install_log" 2>&1
+       if ! git clone http://git.geeqie.org/git/geeqie.git >> "$install_log" 2>&1
        then
                git_error=$(tail -n5 "$install_log" 2>&1)
                zenity --title="$title" --width=370 --height=400 --error --text="Git error:\n\n$git_error" 2> /dev/null