Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90981309
093.gitremotes.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, Nov 6, 15:18
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 15:18 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22171980
Attached To
rPH Phabricator
093.gitremotes.php
View Options
<?php
echo
pht
(
'Stripping remotes from repository default branches...'
).
"
\n
"
;
$table
=
new
PhabricatorRepository
();
$table
->
openTransaction
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
$repos
=
queryfx_all
(
$conn_w
,
'SELECT id, name, details FROM %T WHERE versionControlSystem = %s FOR UPDATE'
,
$table
->
getTableName
(),
'git'
);
foreach
(
$repos
as
$repo
)
{
$details
=
json_decode
(
$repo
[
'details'
],
true
);
$old
=
idx
(
$details
,
'default-branch'
,
''
);
if
(
strpos
(
$old
,
'/'
)
===
false
)
{
continue
;
}
$parts
=
explode
(
'/'
,
$old
);
$parts
=
array_filter
(
$parts
);
$new
=
end
(
$parts
);
$details
[
'default-branch'
]
=
$new
;
$new_details
=
json_encode
(
$details
);
$id
=
$repo
[
'id'
];
$name
=
$repo
[
'name'
];
echo
pht
(
"Updating default branch for repository #%d '%s' from "
.
"'%s' to '%s' to remove the explicit remote.
\n
"
,
$id
,
$name
,
$old
,
$new
);
queryfx
(
$conn_w
,
'UPDATE %T SET details = %s WHERE id = %d'
,
$table
->
getTableName
(),
$new_details
,
$id
);
}
$table
->
saveTransaction
();
echo
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment