@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Diviner: mention how to flag Arcanist and Phorge as "safe" git repos

Summary:
This tip is useful if you are affected by the following error in git or similar:

fatal: detected dubious ownership in repository at '/var/www/phorge'

Just follow the new tip from Diviner to fix at system level.

Ref T15282

Test Plan:
- see if you like the documentation tip
- try to execute the command, and verify that your computer does not explode
- eventually visit the /config/ page with and without that change (with and without a /etc/gitconfig)

Reviewers: O1 Blessed Committers, avivey, Cigaryno

Reviewed By: O1 Blessed Committers, avivey, Cigaryno

Subscribers: avivey, speck, tobiaswiese, Matthew, Cigaryno

Maniphest Tasks: T15282

Differential Revision: https://we.phorge.it/D25236

+6
+6
src/docs/user/installation_guide.diviner
··· 137 137 somewhere/ $ git clone https://we.phorge.it/source/arcanist.git 138 138 somewhere/ $ git clone https://we.phorge.it/source/phorge.git 139 139 140 + After cloning, flag them as safe (to avoid the error //"fatal: 141 + detected dubious ownership in repository at ..."//): 142 + 143 + $ sudo git config --system --add safe.directory somewhere/arcanist 144 + $ sudo git config --system --add safe.directory somewhere/phorge 145 + 140 146 Next Steps 141 147 ========== 142 148