Files
2026-08-09 16:09:18 +08:00

10 lines
263 B
PHP

<?php
/* Remote tag operations are receive-pack updates under refs/tags/. */
function register_tag_operation(&$application) {
$application['push_ref_rules'][] = array(
'name' => 'tag',
'prefix' => 'refs/tags/',
'option' => 'tags');
}