Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117041181
20130219.commitsummarymig.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
Wed, Jun 11, 01:34
Size
477 B
Mime Type
text/x-php
Expires
Fri, Jun 13, 01:34 (2 d)
Engine
blob
Format
Raw Data
Handle
26664859
Attached To
rPH Phabricator
20130219.commitsummarymig.php
View Options
<?php
echo
"Backfilling commit summaries...
\n
"
;
$commits
=
new
LiskMigrationIterator
(
new
PhabricatorRepositoryCommit
());
foreach
(
$commits
as
$commit
)
{
echo
'Filling Commit #'
.
$commit
->
getID
().
"
\n
"
;
if
(
strlen
(
$commit
->
getSummary
()))
{
continue
;
}
$data
=
$commit
->
loadOneRelative
(
new
PhabricatorRepositoryCommitData
(),
'commitID'
);
if
(!
$data
)
{
continue
;
}
$commit
->
setSummary
(
$data
->
getSummary
());
$commit
->
save
();
}
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment