@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.

Update old documentation about `arc set-config`

Summary: Fixes T10223.

Test Plan: Read documentation.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10223

Differential Revision: https://secure.phabricator.com/D15116

+12 -12
+12 -12
src/docs/user/userguide/arcanist.diviner
··· 140 140 == Configuration == 141 141 142 142 Some Arcanist commands can be configured. This configuration is read from 143 - several sources: 143 + three sources, in order: 144 144 145 - # A customization can force any setting with 146 - @{method@arcanist:ArcanistWorkingCopyIdentity::setRuntimeConfig}. 147 - # User can specify settings for working copy in `arc/config` file located in 148 - VCS directory (e.g. `.git/arc/config`) in JSON format. This file can also be 149 - modified by running `arc set-config --local`. 150 - # Repository can specify its config in `.arcconfig` in JSON format. 151 - # User can specify the settings in `~/.arcrc` (JSON) through the `config` key. 152 - This file can be modified also by `arc set-config --global`. 153 - # Machine can specify the settings with `/etc/arcconfig` (JSON). On Windows, 154 - the file path is `C:\ProgramData\Phabricator\Arcanist\config`. 145 + # A project can specify configuration in an `.arcconfig` file. This file is 146 + JSON, and can be updated using `arc set-config --local` or by editing 147 + it manually. 148 + # User configuration is read from `~/.arcconfig`. This file is JSON, and can 149 + be updated using `arc set-config`. 150 + # Host configuration is read from `/etc/arcconfig` (on Windows, the path 151 + is `C:\ProgramData\Phabricator\Arcanist\config`). 155 152 156 - The first place where the setting is defined wins. 153 + Arcanist uses the first definition it encounters as the runtime setting. 157 154 158 155 Existing settings can be printed with `arc get-config`. 156 + 157 + Use `arc help set-config` and `arc help get-config` for more information 158 + about reading and writing configuration. 159 159 160 160 == Next Steps == 161 161