Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107084556
DiffusionGitCommitParentsQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Apr 4, 09:47
Size
461 B
Mime Type
text/x-php
Expires
Sun, Apr 6, 09:47 (2 d)
Engine
blob
Format
Raw Data
Handle
25347671
Attached To
rPH Phabricator
DiffusionGitCommitParentsQuery.php
View Options
<?php
final
class
DiffusionGitCommitParentsQuery
extends
DiffusionCommitParentsQuery
{
protected
function
executeQuery
()
{
$drequest
=
$this
->
getRequest
();
$repository
=
$drequest
->
getRepository
();
list
(
$stdout
)
=
$repository
->
execxLocalCommand
(
'log -n 1 --format=%s %s'
,
'%P'
,
$drequest
->
getStableCommitName
());
$hashes
=
preg_split
(
'/
\s
+/'
,
trim
(
$stdout
));
return
self
::
loadCommitsByIdentifiers
(
$hashes
);
}
}
Event Timeline
Log In to Comment