Skip to content

Commit

Permalink
Use https:// instead of insecure git:// protocol
Browse files Browse the repository at this point in the history
Signed-off-by: Till Maas <[email protected]>

(with minor whitespace changes by [email protected])
  • Loading branch information
tyll authored and sitaramc committed Aug 4, 2017
1 parent 9123ae4 commit 0b0d5f3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ First, prepare the ssh key:

Next, install gitolite by running these commands:

git clone git://github.com/sitaramc/gitolite
git clone https://github.com/sitaramc/gitolite
mkdir -p $HOME/bin
gitolite/install -to $HOME/bin

Expand Down
2 changes: 1 addition & 1 deletion contrib/utils/gitolite-local
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# ----------------------------------------------------------------------
# change these lines to suit
testconf=$HOME/GITOLITE-TESTCONF
gitolite_url=git://github.com/sitaramc/gitolite
gitolite_url=https://github.com/sitaramc/gitolite
# change it to something local for frequent use
# gitolite_url=file:///tmp/gitolite.git

Expand Down
2 changes: 1 addition & 1 deletion contrib/utils/testconf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# a semi-permanent area to play in (please delete it manually if you want to start afresh).
testconf=$HOME/GITOLITE-TESTCONF
# the gitolite source code
gitolite_url=git://github.com/sitaramc/gitolite
gitolite_url=https://github.com/sitaramc/gitolite

# 3. go to your gitolite-admin clone and make suitable changes; see example
# below. No need to push to the server, yet.
Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Usage (from gitolite clone directory):
Simplest use, if $HOME/bin exists and is in $PATH, is:
git clone git://github.com/sitaramc/gitolite
git clone https://github.com/sitaramc/gitolite
gitolite/install -ln
# now run setup
Expand Down
8 changes: 4 additions & 4 deletions src/triggers/upstream
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ git fetch -q "$url" '+refs/*:refs/*'
# R = @all
# RW+ my-company/ = @developers
#
# option upstream.url = git://git.kernel.org/pub/scm/git/git.git
# option upstream.url = https://git.kernel.org/pub/scm/git/git.git
# option upstream.nice = 120
#
# * to force a fetch on the server shell (or via cron), run this command:
Expand All @@ -55,9 +55,9 @@ git fetch -q "$url" '+refs/*:refs/*'
# repo github/CREATOR/..*
# C = @all
# R = @all
# option upstream.url = git://github.com/%GL_REPO.git
# option upstream.nice = 120
# config url.git://github.com/.insteadOf = git://github.com/github/
# option upstream.url = https://github.com/%GL_REPO.git
# option upstream.nice = 120
# config url.https://github.com/.insteadOf = https://github.com/github/
#
# Now you can make local, read-only, clones of all your github repos with
#
Expand Down
2 changes: 1 addition & 1 deletion t/smart-http.root-setup
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export GITOLITE_HTTP_HOME=$PWD/gitolite-home
cd gitolite-home
git clone /tmp/gitolite.git gitolite-source
# NOTE: I use a bare repo in /tmp for convenience; you'd use
# 'git://github.com/sitaramc/gitolite'
# 'https://github.com/sitaramc/gitolite'

# make the bin directory, and add it to PATH
cd gitolite-source
Expand Down

0 comments on commit 0b0d5f3

Please sign in to comment.