Skip to content

Commit e3d7c16

Browse files
author
epriestley
committedJun 3, 2014
Use "https://" instead of "git://" for anoymous GitHub requests in documentation
Summary: These both work, but "git://" uses a nonstandard and possibly firewalled port, is less familiar to users, and is not promoted in the GitHub UI. Test Plan: `grep`, reviewed diff. Reviewers: chad, avive, avivey Reviewed By: avivey Subscribers: epriestley, avivey Differential Revision: https://secure.phabricator.com/D9360
1 parent b01f57b commit e3d7c16

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed
 

‎scripts/install/install_rhel-derivs.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,21 +119,21 @@ confirm
119119

120120
if [[ ! -e libphutil ]]
121121
then
122-
git clone git://github.com/phacility/libphutil.git
122+
git clone https://github.com/phacility/libphutil.git
123123
else
124124
(cd libphutil && git pull --rebase)
125125
fi
126126

127127
if [[ ! -e arcanist ]]
128128
then
129-
git clone git://github.com/phacility/arcanist.git
129+
git clone https://github.com/phacility/arcanist.git
130130
else
131131
(cd arcanist && git pull --rebase)
132132
fi
133133

134134
if [[ ! -e phabricator ]]
135135
then
136-
git clone git://github.com/phacility/phabricator.git
136+
git clone https://github.com/phacility/phabricator.git
137137
else
138138
(cd phabricator && git pull --rebase)
139139
fi

‎scripts/install/install_ubuntu.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,21 @@ fi
6464

6565
if [ ! -e libphutil ]
6666
then
67-
git clone git://github.com/phacility/libphutil.git
67+
git clone https://github.com/phacility/libphutil.git
6868
else
6969
(cd libphutil && git pull --rebase)
7070
fi
7171

7272
if [ ! -e arcanist ]
7373
then
74-
git clone git://github.com/phacility/arcanist.git
74+
git clone https://github.com/phacility/arcanist.git
7575
else
7676
(cd arcanist && git pull --rebase)
7777
fi
7878

7979
if [ ! -e phabricator ]
8080
then
81-
git clone git://github.com/phacility/phabricator.git
81+
git clone https://github.com/phacility/phabricator.git
8282
else
8383
(cd phabricator && git pull --rebase)
8484
fi

‎src/docs/user/installation_guide.diviner

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ Now that you have all that stuff installed, grab Phabricator and its
9595
dependencies:
9696

9797
$ cd somewhere/ # pick some install directory
98-
somewhere/ $ git clone git://github.com/phacility/libphutil.git
99-
somewhere/ $ git clone git://github.com/phacility/arcanist.git
100-
somewhere/ $ git clone git://github.com/phacility/phabricator.git
98+
somewhere/ $ git clone https://github.com/phacility/libphutil.git
99+
somewhere/ $ git clone https://github.com/phacility/arcanist.git
100+
somewhere/ $ git clone https://github.com/phacility/phabricator.git
101101

102102
= Installing APC (Optional) =
103103

‎src/docs/user/userguide/arcanist.diviner

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ have PHP installed, you can download it from <http://www.php.net/>.
9292

9393
To install Arcanist, pick an install directory and clone the code from GitHub:
9494

95-
some_install_path/ $ git clone git://github.com/phacility/libphutil.git
96-
some_install_path/ $ git clone git://github.com/phacility/arcanist.git
95+
some_install_path/ $ git clone https://github.com/phacility/libphutil.git
96+
some_install_path/ $ git clone https://github.com/phacility/arcanist.git
9797

9898
This should leave you with a directory structure like this
9999

‎src/docs/user/userguide/arcanist_quick_start.diviner

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Then install Arcanist itself:
2323

2424
$ mkdir somewhere/
2525
$ cd somewhere/
26-
somewhere/ $ git clone git://github.com/phacility/libphutil.git
27-
somewhere/ $ git clone git://github.com/phacility/arcanist.git
26+
somewhere/ $ git clone https://github.com/phacility/libphutil.git
27+
somewhere/ $ git clone https://github.com/phacility/arcanist.git
2828

2929
Add `arc` to your path:
3030

0 commit comments

Comments
 (0)
Failed to load comments.