From e3d7c16d8c8535ebab6653f14bd1e57af360c97d Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 3 Jun 2014 09:40:16 -0700 Subject: [PATCH] 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 --- scripts/install/install_rhel-derivs.sh | 6 +++--- scripts/install/install_ubuntu.sh | 6 +++--- src/docs/user/installation_guide.diviner | 6 +++--- src/docs/user/userguide/arcanist.diviner | 4 ++-- src/docs/user/userguide/arcanist_quick_start.diviner | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/scripts/install/install_rhel-derivs.sh b/scripts/install/install_rhel-derivs.sh index 58753c038c..64bd77d057 100755 --- a/scripts/install/install_rhel-derivs.sh +++ b/scripts/install/install_rhel-derivs.sh @@ -119,21 +119,21 @@ confirm if [[ ! -e libphutil ]] then - git clone git://github.com/phacility/libphutil.git + git clone https://github.com/phacility/libphutil.git else (cd libphutil && git pull --rebase) fi if [[ ! -e arcanist ]] then - git clone git://github.com/phacility/arcanist.git + git clone https://github.com/phacility/arcanist.git else (cd arcanist && git pull --rebase) fi if [[ ! -e phabricator ]] then - git clone git://github.com/phacility/phabricator.git + git clone https://github.com/phacility/phabricator.git else (cd phabricator && git pull --rebase) fi diff --git a/scripts/install/install_ubuntu.sh b/scripts/install/install_ubuntu.sh index 265d044883..5e97397774 100755 --- a/scripts/install/install_ubuntu.sh +++ b/scripts/install/install_ubuntu.sh @@ -64,21 +64,21 @@ fi if [ ! -e libphutil ] then - git clone git://github.com/phacility/libphutil.git + git clone https://github.com/phacility/libphutil.git else (cd libphutil && git pull --rebase) fi if [ ! -e arcanist ] then - git clone git://github.com/phacility/arcanist.git + git clone https://github.com/phacility/arcanist.git else (cd arcanist && git pull --rebase) fi if [ ! -e phabricator ] then - git clone git://github.com/phacility/phabricator.git + git clone https://github.com/phacility/phabricator.git else (cd phabricator && git pull --rebase) fi diff --git a/src/docs/user/installation_guide.diviner b/src/docs/user/installation_guide.diviner index b829c5aa1f..b9adeb6bcf 100644 --- a/src/docs/user/installation_guide.diviner +++ b/src/docs/user/installation_guide.diviner @@ -95,9 +95,9 @@ Now that you have all that stuff installed, grab Phabricator and its dependencies: $ cd somewhere/ # pick some install directory - somewhere/ $ git clone git://github.com/phacility/libphutil.git - somewhere/ $ git clone git://github.com/phacility/arcanist.git - somewhere/ $ git clone git://github.com/phacility/phabricator.git + somewhere/ $ git clone https://github.com/phacility/libphutil.git + somewhere/ $ git clone https://github.com/phacility/arcanist.git + somewhere/ $ git clone https://github.com/phacility/phabricator.git = Installing APC (Optional) = diff --git a/src/docs/user/userguide/arcanist.diviner b/src/docs/user/userguide/arcanist.diviner index 5211e173d8..8f8ba37eb5 100644 --- a/src/docs/user/userguide/arcanist.diviner +++ b/src/docs/user/userguide/arcanist.diviner @@ -92,8 +92,8 @@ have PHP installed, you can download it from . To install Arcanist, pick an install directory and clone the code from GitHub: - some_install_path/ $ git clone git://github.com/phacility/libphutil.git - some_install_path/ $ git clone git://github.com/phacility/arcanist.git + some_install_path/ $ git clone https://github.com/phacility/libphutil.git + some_install_path/ $ git clone https://github.com/phacility/arcanist.git This should leave you with a directory structure like this diff --git a/src/docs/user/userguide/arcanist_quick_start.diviner b/src/docs/user/userguide/arcanist_quick_start.diviner index 3d4407f42a..23f5cbb399 100644 --- a/src/docs/user/userguide/arcanist_quick_start.diviner +++ b/src/docs/user/userguide/arcanist_quick_start.diviner @@ -23,8 +23,8 @@ Then install Arcanist itself: $ mkdir somewhere/ $ cd somewhere/ - somewhere/ $ git clone git://github.com/phacility/libphutil.git - somewhere/ $ git clone git://github.com/phacility/arcanist.git + somewhere/ $ git clone https://github.com/phacility/libphutil.git + somewhere/ $ git clone https://github.com/phacility/arcanist.git Add `arc` to your path: