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

Correct a straggling CLI format string after ref selector changes

Summary: Ref T13589. This is missing a "%s" conversion.

Test Plan: Will view a commit with a diff.

Maniphest Tasks: T13589

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

+1 -1
+1 -1
src/applications/diffusion/query/rawdiff/DiffusionGitRawDiffQuery.php
··· 23 23 // Check if this is the root commit by seeing if it has parents, since 24 24 // `git diff X^ X` does not work if "X" is the initial commit. 25 25 list($parents) = $repository->execxLocalCommand( 26 - 'log -n 1 %s --', 26 + 'log -n 1 %s %s --', 27 27 '--format=%P', 28 28 gitsprintf('%s', $commit)); 29 29