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

Document where Arcanist configuration can be set

Test Plan: Read it.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

+21 -1
+1 -1
src/applications/files/engine/PhabricatorFileStorageEngine.php
··· 48 48 * some metadata keys (like "name" and "author") in it. You should be prepared 49 49 * to handle writes which specify no metadata, but might want to optionally 50 50 * use some keys in this array for debugging or logging purposes. This is 51 - * the same dictionary passed to @{method:PhabricatorFile::NewFromFileData}, 51 + * the same dictionary passed to @{method:PhabricatorFile::newFromFileData}, 52 52 * so you could conceivably do custom things with it. 53 53 * 54 54 * If you are unable to write for whatever reason (e.g., the disk is full),
+20
src/docs/userguide/arcanist.diviner
··· 139 139 140 140 source /path/to/arcanist/resources/shell/bash-completion 141 141 142 + == Configuration == 143 + 144 + Some Arcanist commands can be configured. This configuration is read from 145 + several sources: 146 + 147 + # A customization can force any setting with 148 + @{method@arcanist:ArcanistWorkingCopyIdentity::setRuntimeConfig}. 149 + # User can specify settings for working copy in `arc/config` file located in 150 + VCS directory (e.g. `.git/arc/config`) in JSON format. This file can also be 151 + modified by running `arc set-config --local`. 152 + # Repository can specify its config in `.arcconfig` in JSON format. 153 + # User can specify the settings in `~/.arcrc` (JSON) through the `config` key. 154 + This file can be modified also by `arc set-config --global`. 155 + # Machine can specify the settings with `/etc/arcconfig` (JSON). On Windows, 156 + the file path is 'C:\ProgramData\Phabricator\Arcanist\config`. 157 + 158 + The first place where the setting is defined wins. 159 + 160 + Existing settings can be printed with `arc set-config --show`. 161 + 142 162 == Next Steps == 143 163 144 164 Continue by: