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

Change docs to be consistent with script

Summary:
Ref https://discourse.phabricator-community.org/t/upgrade-article-process-doesnt-match-script/2598.

I personally prefer "stop the server and then pull" to reduce the risk of scary "served half the request from one version and half from another", but I think this is hard to pull off with correctly configured APC caches.

Test Plan: Mk.1 eyeball

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+11 -13
+11 -13
src/docs/user/upgrading.diviner
··· 90 90 91 91 ROOT=`pwd` # You can hard-code the path here instead. 92 92 93 - ### UPDATE WORKING COPIES ###################################################### 94 - 95 - cd $ROOT/libphutil 96 - git pull 97 - 98 - cd $ROOT/arcanist 99 - git pull 100 - 101 - cd $ROOT/phabricator 102 - git pull 103 - 104 - 105 - ### CYCLE WEB SERVER AND DAEMONS ############################################### 93 + ### STOP WEB SERVER AND DAEMONS ############################################### 106 94 107 95 # Stop daemons. 108 96 $ROOT/phabricator/bin/phd stop ··· 117 105 118 106 sudo /etc/init.d/httpd stop 119 107 108 + ### UPDATE WORKING COPIES ###################################################### 109 + 110 + cd $ROOT/libphutil 111 + git pull 112 + 113 + cd $ROOT/arcanist 114 + git pull 115 + 116 + cd $ROOT/phabricator 117 + git pull 120 118 121 119 # Upgrade the database schema. You may want to add the "--force" flag to allow 122 120 # this script to run noninteractively.