Skip to content

Commit 63ed126

Browse files
author
epriestley
committedMay 29, 2014
Point github.com/facebook URIs at github.com/phacility insead
Summary: Point everything at the new canonical URI. Test Plan: `grep` Reviewers: chad Reviewed By: chad Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D9328
1 parent a42ec32 commit 63ed126

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed
 

‎resources/sql/patches/20131004.dxreviewers.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
if (phid_get_type($dst) == PhabricatorPHIDConstants::PHID_TYPE_UNKNOWN) {
3333
// At least one old install ran into some issues here. Skip the row if we
3434
// can't figure out what the destination PHID is. See here:
35-
// https://github.com/facebook/phabricator/pull/507
35+
// https://github.com/phacility/phabricator/pull/507
3636
continue;
3737
}
3838

‎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/facebook/libphutil.git
122+
git clone git://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/facebook/arcanist.git
129+
git clone git://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/facebook/phabricator.git
136+
git clone git://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/facebook/libphutil.git
67+
git clone git://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/facebook/arcanist.git
74+
git clone git://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/facebook/phabricator.git
81+
git clone git://github.com/phacility/phabricator.git
8282
else
8383
(cd phabricator && git pull --rebase)
8484
fi

‎src/applications/repository/engine/PhabricatorRepositoryPullEngine.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ private function executeMercurialUpdate() {
384384
// This behavior has been reverted, but users who updated between Feb 1,
385385
// 2012 and Mar 1, 2012 will have the erroring version. Do a dumb test
386386
// against stdout to check for this possibility.
387-
// See: https://github.com/facebook/phabricator/issues/101/
387+
// See: https://github.com/phacility/phabricator/issues/101/
388388

389389
// NOTE: Mercurial has translated versions, which translate this error
390390
// string. In a translated version, the string will be something else,

‎src/docs/user/feedback.diviner

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ requests, general questions, or random feedback this way, too.
3939
= GitHub Issues =
4040

4141
You can also use
42-
[[https://github.com/facebook/phabricator/issues/new | GitHub Issues]] if you
42+
[[https://github.com/phacility/phabricator/issues/new | GitHub Issues]] if you
4343
prefer.
4444

4545
= IRC =

‎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/facebook/libphutil.git
99-
somewhere/ $ git clone git://github.com/facebook/arcanist.git
100-
somewhere/ $ git clone git://github.com/facebook/phabricator.git
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
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/facebook/libphutil.git
96-
some_install_path/ $ git clone git://github.com/facebook/arcanist.git
95+
some_install_path/ $ git clone git://github.com/phacility/libphutil.git
96+
some_install_path/ $ git clone git://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/facebook/libphutil.git
27-
somewhere/ $ git clone git://github.com/facebook/arcanist.git
26+
somewhere/ $ git clone git://github.com/phacility/libphutil.git
27+
somewhere/ $ git clone git://github.com/phacility/arcanist.git
2828

2929
Add `arc` to your path:
3030

0 commit comments

Comments
 (0)
Failed to load comments.