@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 another Git 2.16.0 CLI compatibility issue

Summary:
This command also needs a "." instead of an empty string now.

(This powers the file browser typeahead in Diffusion.)

Test Plan: Will test in production since there's still no easy 2.16 installer for macOS.

Reviewers: amckinley

Reviewed By: amckinley

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

+5 -1
+5 -1
src/applications/diffusion/conduit/DiffusionQueryPathsConduitAPIMethod.php
··· 37 37 $commit = $request->getValue('commit'); 38 38 $repository = $drequest->getRepository(); 39 39 40 - // http://comments.gmane.org/gmane.comp.version-control.git/197735 40 + // Recent versions of Git don't work if you pass the empty string, and 41 + // require "." to list everything. 42 + if (!strlen($path)) { 43 + $path = '.'; 44 + } 41 45 42 46 $future = $repository->getLocalCommandFuture( 43 47 'ls-tree --name-only -r -z %s -- %s',