Change the default branch on the Repository tab.
リポジトリタブのデフォルトブランチを変更します。
None
Head of all pages
JavaScript
$(function() {
// Note: Specify the branch name you want to default to.
const branchName = '3.3-stable';
const repositoryTabLink = $('#main-menu a.repository');
repositoryTabLink.attr('href', repositoryTabLink.attr('href') + '?rev=' + encodeURIComponent(branchName));
});