@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 issue with new branch query data getting used incorrectly

See <https://github.com/facebook/phabricator/issues/429>

+1 -2
+1 -2
src/applications/repository/daemon/PhabricatorRepositoryPullLocalDaemon.php
··· 750 750 $branches = mpull($branches, 'getHeadCommitIdentifier', 'getName'); 751 751 752 752 $got_something = false; 753 - foreach ($branches as $name => $branch) { 754 - $commit = $branch['rev']; 753 + foreach ($branches as $name => $commit) { 755 754 if ($this->isKnownCommit($repository, $commit)) { 756 755 continue; 757 756 } else {