mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Change protocoll for any git clone from Github to https
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
This commit is contained in:
parent
d6f2658268
commit
d82f8cbd3f
7 changed files with 11 additions and 11 deletions
2
INSTALL
2
INSTALL
|
@ -129,7 +129,7 @@ like this:
|
|||
|
||||
mkdir -p ~/src
|
||||
cd ~/src
|
||||
git clone git://github.com/Subsurface-divelog/subsurface
|
||||
git clone https://github.com/Subsurface-divelog/subsurface.git
|
||||
./subsurface/scripts/build.sh # <- this step will take quite a while as it
|
||||
# compiles a handful of libraries before
|
||||
# building Subsurface
|
||||
|
|
2
README
2
README
|
@ -17,7 +17,7 @@ License: GPLv2
|
|||
You can get the sources to the latest development version from the git
|
||||
repository:
|
||||
|
||||
git clone git://github.com/Subsurface-divelog/subsurface
|
||||
git clone https://github.com/Subsurface-divelog/subsurface.git
|
||||
|
||||
You can also fork the repository and browse the sources at the same site,
|
||||
simply using https://github.com/Subsurface-divelog/subsurface
|
||||
|
|
|
@ -91,14 +91,14 @@ fi
|
|||
|
||||
# ok, now we have Qt, SDK, and NDK - let's get us some Subsurface
|
||||
if [ ! -d subsurface ] ; then
|
||||
git clone git://github.com/Subsurface-divelog/subsurface
|
||||
git clone https://github.com/Subsurface-divelog/subsurface.git
|
||||
fi
|
||||
pushd subsurface
|
||||
git pull --rebase
|
||||
popd
|
||||
|
||||
if [ ! -d libdivecomputer ] ; then
|
||||
git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc libdivecomputer
|
||||
git clone -b Subsurface-branch https://github.com/Subsurface-divelog/libdc.git libdivecomputer
|
||||
pushd libdivecomputer
|
||||
autoreconf --install
|
||||
autoreconf --install
|
||||
|
|
|
@ -315,7 +315,7 @@ if [ ! -e "$PKG_CONFIG_LIBDIR/libdivecomputer.pc" ] ; then
|
|||
fi
|
||||
|
||||
if [ ! -e qt-android-cmake ] ; then
|
||||
git clone git://github.com/LaurentGomila/qt-android-cmake.git
|
||||
git clone https://github.com/LaurentGomila/qt-android-cmake.git
|
||||
else
|
||||
pushd qt-android-cmake
|
||||
git pull
|
||||
|
|
|
@ -335,7 +335,7 @@ echo next building for $ARCH
|
|||
|
||||
# build libdivecomputer
|
||||
if [ ! -d libdivecomputer ] ; then
|
||||
git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc.git libdivecomputer
|
||||
git clone -b Subsurface-branch https://github.com/Subsurface-divelog/libdc.git libdivecomputer
|
||||
fi
|
||||
cd libdivecomputer
|
||||
git pull --rebase
|
||||
|
|
|
@ -94,7 +94,7 @@ if [[ $PLATFORM = Darwin || "$LIBGIT" < "24" ]] ; then
|
|||
if [[ $1 = local ]] ; then
|
||||
git clone $SRC/../libgit2 libgit2
|
||||
else
|
||||
git clone git://github.com/libgit2/libgit2
|
||||
git clone https://github.com/libgit2/libgit2.git
|
||||
fi
|
||||
fi
|
||||
cd libgit2
|
||||
|
@ -129,7 +129,7 @@ if [ ! -d libdivecomputer ] ; then
|
|||
if [[ $1 = local ]] ; then
|
||||
git clone $SRC/../libdivecomputer libdivecomputer
|
||||
else
|
||||
git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc.git libdivecomputer
|
||||
git clone -b Subsurface-branch https://github.com/Subsurface-divelog/libdc.git libdivecomputer
|
||||
fi
|
||||
fi
|
||||
cd libdivecomputer
|
||||
|
@ -162,7 +162,7 @@ if [ $BUILDMARBLE = 1 ]; then
|
|||
if [[ $1 = local ]] ; then
|
||||
git clone $SRC/../marble-source marble-source
|
||||
else
|
||||
git clone -b Subsurface-branch git://github.com/Subsurface-divelog/marble.git marble-source
|
||||
git clone -b Subsurface-branch https://github.com/Subsurface-divelog/marble.git marble-source
|
||||
fi
|
||||
fi
|
||||
cd marble-source
|
||||
|
@ -222,7 +222,7 @@ if [ "$BUILDGRANTLEE" = "1" ] ; then
|
|||
if [[ $1 = local ]] ; then
|
||||
git clone $SRC/../grantlee grantlee
|
||||
else
|
||||
git clone git://github.com/steveire/grantlee.git
|
||||
git clone https://github.com/steveire/grantlee.git
|
||||
fi
|
||||
fi
|
||||
cd grantlee
|
||||
|
|
|
@ -26,7 +26,7 @@ fi
|
|||
# or SHAs from upstream
|
||||
cd $SRC
|
||||
if [ ! -d kirigami ] ; then
|
||||
git clone -b master git://github.com/KDE/kirigami
|
||||
git clone -b master https://github.com/KDE/kirigami.git
|
||||
fi
|
||||
if [ "$NOPULL" = "" ] ; then
|
||||
pushd kirigami
|
||||
|
|
Loading…
Reference in a new issue