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

Fix markup in docs

Summary: We highligh ##``## only on the same line.

Test Plan: Looked at it.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana 3d6e4280 7138427a

+6 -6
+2 -2
src/docs/flavortext/recommendations_on_revision_control.diviner
··· 27 27 - In SVN, this means don't ##commit## until after an idea has been completely 28 28 written. All reasonable SVN workflows naturally enforce this. 29 29 - In Git, this means squashing checkpoint commits as you go (with ##git commit 30 - --amend##) or before pushing (with ##git rebase -i## or `git merge 31 - --squash`), or having a strict policy where your master/trunk contains only 30 + --amend##) or before pushing (with ##git rebase -i## or ##git merge 31 + --squash##), or having a strict policy where your master/trunk contains only 32 32 merge commits and each is a merge between the old master and a branch which 33 33 represents a single idea. Although this preserves the checkpoint commits 34 34 along the branches, you can view master alone as a series of single-idea
+4 -4
src/docs/userguide/arcanist_diff.diviner
··· 161 161 "Autoclose" in the Repository configuration.) 162 162 163 163 If you push to an untracked repository (or `arc` can't figure out that it's 164 - tracked), `arc land`, `arc amend` and `arc commit` will implicitly run `arc 165 - close-revision`. 164 + tracked), `arc land`, `arc amend` and `arc commit` will implicitly run 165 + `arc close-revision`. 166 166 167 167 = General Information = 168 168 ··· 192 192 $ arc diff --create # Force "create". 193 193 $ arc diff --update <revision> # Force "update". 194 194 195 - You can figure out what `arc` believes to be in the working copy with `arc 196 - which`. 195 + You can figure out what `arc` believes to be in the working copy with 196 + `arc which`.