]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Replace git:// URLs with https:// URLs
authorMark Wielaard <mark@klomp.org>
Mon, 29 Aug 2022 08:10:27 +0000 (10:10 +0200)
committerMark Wielaard <mark@klomp.org>
Mon, 29 Aug 2022 08:13:47 +0000 (10:13 +0200)
For unauthenticated git clones it is slightly more secure to use the https
link because the site certificate will be checked. Also https might be more
accessible from all places than the git protocol port.

README
auxprogs/update-demangler
docs/internals/git-HOWTO.txt
nightly/README.txt
nightly/bin/nightly
solaris/build_solaris_package

diff --git a/README b/README
index ae21cc74d6eced4e632bc630690d907bdadb9aba..ddbb85689da22a4718cd861e31e2b3df73d13512 100644 (file)
--- a/README
+++ b/README
@@ -72,7 +72,7 @@ Building and installing it
 To install from the GIT repository:
 
   0. Clone the code from GIT:
-     git clone git://sourceware.org/git/valgrind.git
+     git clone https://sourceware.org/git/valgrind.git
      There are further instructions at
      http://www.valgrind.org/downloads/repository.html.
 
index 307a0ea366e5bc491725bb0d3ed98906621dc483..7b1456315d04c7e645c6b637e5b38ea63937e1bf 100755 (executable)
@@ -37,7 +37,7 @@ echo "Updating the demangler in $DIR"
 mkdir gcc
 cd gcc
 git init
-git remote add origin git://gcc.gnu.org/git/gcc.git
+git remote add origin https://gcc.gnu.org/git/gcc.git
 git config core.sparsecheckout true
 echo "libiberty/*" > .git/info/sparse-checkout
 echo "include/*" >> .git/info/sparse-checkout
@@ -91,7 +91,7 @@ echo "Checking out coregrind/m_demangle"
 mkdir valgrind-sparse-clone
 cd valgrind-sparse-clone
 git init
-git remote add origin -f git://sourceware.org/git/valgrind.git/
+git remote add origin -f https://sourceware.org/git/valgrind.git/
 git config core.sparsecheckout true
 echo "coregrind/m_demangle/*" > .git/info/sparse-checkout
 git pull origin master
index 628ef6a5101832488007a12c7dc0df3c1b9b4e37..fd7e30cd53214493e630317a5ac976562fd77850 100644 (file)
@@ -14,7 +14,7 @@ Valgrind Users
 
 Valgrind users can clone the Valgrind source code repository as follows:
 
-git clone git://sourceware.org/git/valgrind.git/
+git clone https://sourceware.org/git/valgrind.git/
 
 Valgrind Developers
 -------------------
index 0592dc43aa0f237c316d077fe01f35c693675c84..f345468a2434705c9ff4824d15b4c195f3898871 100644 (file)
@@ -33,7 +33,7 @@ To set up nightly testing for a machine, do the following.
 
 (1) Clone a shallow copy from the repository, eg:
 
-        git clone --depth 1 git://sourceware.org/git/valgrind.git/ $DIR
+        git clone --depth 1 https://sourceware.org/git/valgrind.git/ $DIR
 
     where $DIR is the name of the directory you want it to be in.
     You'll probably want to include "nightly" in the directory name.
index 3bd5986de843a498c85bf9c0379ef4b66bd803c8..d4783f95d4cd2f732f8b1ac648aeb261556ad206 100755 (executable)
@@ -50,7 +50,7 @@ else
   MAKE=make
 fi
 
-valgrind_git_repo="git://sourceware.org/git/valgrind.git/"
+valgrind_git_repo="https://sourceware.org/git/valgrind.git/"
 
 # Must have exactly two arguments
 if [ $# -ne 2 ] ; then
index 19781219d200f13e92bcc4f4620e1db671b5bdfa..2a1a62b7a38db37fec424dd9f181fc13df652e73 100755 (executable)
@@ -22,7 +22,7 @@
 # - pkgrepo set -s $repo_uri publisher/prefix=valgrind
 #
 
-GITREPO=git://sourceware.org/git/valgrind.git/
+GITREPO=https://sourceware.org/git/valgrind.git/
 TMPDIR=/var/tmp/valgrind-build
 SRCDIR=$TMPDIR/sources
 INSTALLDIR=$TMPDIR/install