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

Resolve SVN commit identifier inside Git in lint saver

Test Plan:
$ git svn find-rev r11

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana 2cd4f2e8 cacbfba9

+5 -1
+5 -1
src/applications/diffusion/DiffusionLintSaveRunner.php
··· 75 75 76 76 if ($this->lintCommit) { 77 77 try { 78 - $all_files = $api->getChangedFiles($this->lintCommit); 78 + $commit = $this->lintCommit; 79 + if ($this->svnRoot) { 80 + $commit = $api->getCanonicalRevisionName('@'.$commit); 81 + } 82 + $all_files = $api->getChangedFiles($commit); 79 83 } catch (ArcanistCapabilityNotSupportedException $ex) { 80 84 $this->lintCommit = null; 81 85 }