diff --git a/app/assets/javascripts/groups/init_transfer_group_form.js b/app/assets/javascripts/groups/init_transfer_group_form.js
index 3e27fe13c6051189ee2d65e5ddbc4dc2a52a76c7..2ce55701471d9d26a266aa62e8710199d6d0ab5e 100644
--- a/app/assets/javascripts/groups/init_transfer_group_form.js
+++ b/app/assets/javascripts/groups/init_transfer_group_form.js
@@ -40,7 +40,7 @@ export default () => {
           )}">`,
           groupLinkEnd: '</a>',
           documentationLinkStart: `<a href="${helpPagePath(
-            'user/project/repository/index.html#repository-path-changes',
+            'user/project/repository/_index.html#repository-path-changes',
           )}">`,
           documentationLinkEnd: '</a>',
         },
diff --git a/app/assets/javascripts/invite_members/components/invite_members_modal.vue b/app/assets/javascripts/invite_members/components/invite_members_modal.vue
index b6894342244f8ce665bcf65b3ec792428cac6bdb..a96646057030af40f82bdfb1ed1821c23595e076 100644
--- a/app/assets/javascripts/invite_members/components/invite_members_modal.vue
+++ b/app/assets/javascripts/invite_members/components/invite_members_modal.vue
@@ -152,7 +152,7 @@ export default {
     },
     accessExpirationHelpLink() {
       return this.isProject
-        ? helpPagePath('user/project/members/index', { anchor: 'add-users-to-a-project' })
+        ? helpPagePath('user/project/members/_index', { anchor: 'add-users-to-a-project' })
         : helpPagePath('user/group/_index', { anchor: 'add-users-to-a-group' });
     },
     isEmptyInvites() {
diff --git a/app/assets/javascripts/ml/model_registry/apps/index_ml_models.vue b/app/assets/javascripts/ml/model_registry/apps/index_ml_models.vue
index 281f3d4fa8d9dc4636343ec75dd3e1b79e0e0ae9..bda2af2c59489756384f8a9425e75506c5af6535 100644
--- a/app/assets/javascripts/ml/model_registry/apps/index_ml_models.vue
+++ b/app/assets/javascripts/ml/model_registry/apps/index_ml_models.vue
@@ -147,7 +147,7 @@ export default {
     ...i18n,
   },
   sortableFields: BASE_SORT_FIELDS,
-  docHref: helpPagePath('user/project/ml/model_registry/index.md'),
+  docHref: helpPagePath('user/project/ml/model_registry/_index.md'),
   emptyState: {
     title: s__('MlModelRegistry|Import your machine learning models'),
     description: s__(
diff --git a/app/assets/javascripts/ml/model_registry/components/mlflow_usage_modal.vue b/app/assets/javascripts/ml/model_registry/components/mlflow_usage_modal.vue
index 0960cfc8d1995bf2da8e05cdf78ab1a0aa879060..cfb0f4ed55cb2c2234b40bc121febb4d5b2adef3 100644
--- a/app/assets/javascripts/ml/model_registry/components/mlflow_usage_modal.vue
+++ b/app/assets/javascripts/ml/model_registry/components/mlflow_usage_modal.vue
@@ -55,7 +55,7 @@ export default {
   methods: {
     openDocs() {
       visitUrl(
-        helpPagePath('user/project/ml/model_registry/index', {
+        helpPagePath('user/project/ml/model_registry/_index', {
           anchor: 'create-machine-learning-models-and-model-versions-by-using-mlflow',
         }),
         true,
diff --git a/app/assets/javascripts/ml/model_registry/components/model_list_empty_state.vue b/app/assets/javascripts/ml/model_registry/components/model_list_empty_state.vue
index 6d8f9c8c5b92fa08bd0f24ab9c5fec7d9fa0434b..3edcce316f02314faf2d7c3df9e0d465cf839bd7 100644
--- a/app/assets/javascripts/ml/model_registry/components/model_list_empty_state.vue
+++ b/app/assets/javascripts/ml/model_registry/components/model_list_empty_state.vue
@@ -33,7 +33,7 @@ export default {
     },
   },
   mlflowDocs: s__('MlModelRegistry|Create using MLflow'),
-  helpPath: helpPagePath('user/project/ml/model_registry/index', {
+  helpPath: helpPagePath('user/project/ml/model_registry/_index', {
     anchor: 'create-machine-learning-models-and-model-versions-by-using-mlflow',
   }),
   emptySvgPath: emptySvgUrl,
diff --git a/app/assets/javascripts/pages/projects/shared/permissions/constants.js b/app/assets/javascripts/pages/projects/shared/permissions/constants.js
index 86a1bf82a874e52c268d11ddd78c8dc754491217..fe287998f4968d7792ea37e5c62be67314eca743 100644
--- a/app/assets/javascripts/pages/projects/shared/permissions/constants.js
+++ b/app/assets/javascripts/pages/projects/shared/permissions/constants.js
@@ -46,10 +46,10 @@ export const CVE_ID_REQUEST_BUTTON_I18N = {
 };
 
 export const modelExperimentsHelpPath = helpPagePath(
-  'user/project/ml/experiment_tracking/index.md',
+  'user/project/ml/experiment_tracking/_index.md',
 );
 
-export const modelRegistryHelpPath = helpPagePath('user/project/ml/model_registry/index.md');
+export const modelRegistryHelpPath = helpPagePath('user/project/ml/model_registry/_index.md');
 
 export const duoHelpPath = helpPagePath('user/ai_features');
 export const amazonQHelpPath = helpPagePath('user/duo_amazon_q/index.md');
diff --git a/app/graphql/types/project_type.rb b/app/graphql/types/project_type.rb
index b26d4f0a4d2bddbdc466921ee23e5abea79d73fc..3013cb3955b49a9373b05ce570369eac08e19251 100644
--- a/app/graphql/types/project_type.rb
+++ b/app/graphql/types/project_type.rb
@@ -1012,7 +1012,7 @@ def project
     def add_file_docs_link
       ActionController::Base.helpers.link_to _('add at least one file to the repository'),
         Rails.application.routes.url_helpers.help_page_url(
-          'user/project/repository/index.md',
+          'user/project/repository/_index.md',
           anchor: 'add-files-to-a-repository'),
         target: '_blank',
         rel: 'noopener noreferrer'
diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb
index 50cb460215e967c00fdd11a6e6d167d0bd1fd2f9..e019d78fe1d04532f39dca547680b751a287d976 100644
--- a/app/helpers/projects_helper.rb
+++ b/app/helpers/projects_helper.rb
@@ -128,7 +128,7 @@ def link_to_namespace_change_doc
   end
 
   def link_to_data_loss_doc
-    link_to _('data loss'), help_page_path('user/project/repository/index.md', anchor: 'repository-path-changes'),
+    link_to _('data loss'), help_page_path('user/project/repository/_index.md', anchor: 'repository-path-changes'),
       target: '_blank', rel: 'noopener'
   end
 
diff --git a/app/presenters/dev_ops_report/metric_presenter.rb b/app/presenters/dev_ops_report/metric_presenter.rb
index ad2a21cdb2f746cf23ceec75d0b56444ce2fd772..1a5ce2f5c825b03ac1ad11c8fbfe68915f19119a 100644
--- a/app/presenters/dev_ops_report/metric_presenter.rb
+++ b/app/presenters/dev_ops_report/metric_presenter.rb
@@ -28,7 +28,7 @@ def cards
           description: 'created per active user',
           feature: 'milestones',
           blog: 'http://conversationaldevelopment.com/shorten-cycle/',
-          docs: help_page_path('user/project/milestones/index.md')
+          docs: help_page_path('user/project/milestones/_index.md')
         ),
         Card.new(
           metric: metric,
diff --git a/app/services/security/ci_configuration/base_create_service.rb b/app/services/security/ci_configuration/base_create_service.rb
index 81b6eb118ef91441d64fd7c83a94720ae5341c5e..6b2d1616cb61bc47af8e7f3ea9731e0694b9fc21 100644
--- a/app/services/security/ci_configuration/base_create_service.rb
+++ b/app/services/security/ci_configuration/base_create_service.rb
@@ -18,7 +18,7 @@ def execute
           docs_link = ActionController::Base.helpers.link_to(
             _('add at least one file to the repository'),
             Rails.application.routes.url_helpers.help_page_url(
-              'user/project/repository/index.md', anchor: 'add-files-to-a-repository'
+              'user/project/repository/_index.md', anchor: 'add-files-to-a-repository'
             ),
             target: '_blank',
             rel: 'noopener noreferrer'
diff --git a/app/views/admin/groups/show.html.haml b/app/views/admin/groups/show.html.haml
index 37c6fefc9b96f6cb61d5687ec3540b1d899e1ab9..b18643922d52dbd6e423261b6f7b44c8945ece96 100644
--- a/app/views/admin/groups/show.html.haml
+++ b/app/views/admin/groups/show.html.haml
@@ -98,7 +98,7 @@
       icon: 'user',
       count: @group.users_count) do |c|
       - c.with_description do
-        - direct_members_link = link_to('', help_page_path('user/project/members/index.md', anchor: 'membership-types'))
+        - direct_members_link = link_to('', help_page_path('user/project/members/_index.md', anchor: 'membership-types'))
         - direct_members_message = s_('The number of direct members in the current group. Members in subgroups are not included. %{link_start}What is a direct member%{link_end}?')
         - if @group.root?
           = safe_format(direct_members_message, tag_pair(direct_members_link, :link_start, :link_end))
diff --git a/app/views/groups/milestones/index.html.haml b/app/views/groups/milestones/index.html.haml
index b0c3b435f75cd04b079bf6c7aaf3f48ada04cbf6..60782e341545027eefe1fc65c719564ab3a18297 100644
--- a/app/views/groups/milestones/index.html.haml
+++ b/app/views/groups/milestones/index.html.haml
@@ -12,7 +12,7 @@
         = render Pajamas::ButtonComponent.new(href: new_group_milestone_path(@group), variant: :confirm, button_options: { data: { testid: "new-group-milestone-link" }, class: "gl-ml-3" }) do
           = _('New milestone')
   - if @milestones.blank?
-    = render 'shared/empty_states/milestones_tab', learn_more_path: help_page_path('user/project/milestones/index.md') do
+    = render 'shared/empty_states/milestones_tab', learn_more_path: help_page_path('user/project/milestones/_index.md') do
       - if can?(current_user, :admin_milestone, @group)
         = render Pajamas::ButtonComponent.new(href: new_group_milestone_path(@group), variant: :confirm, button_options: { data: { testid: "new-group-milestone-link" }}) do
           = _('New milestone')
@@ -27,7 +27,7 @@
             = render 'milestone', milestone: milestone
       = paginate @milestones, theme: "gitlab"
 - else
-  = render 'shared/empty_states/milestones', learn_more_path: help_page_path('user/project/milestones/index.md') do
+  = render 'shared/empty_states/milestones', learn_more_path: help_page_path('user/project/milestones/_index.md') do
     - if can?(current_user, :admin_milestone, @group)
       = render Pajamas::ButtonComponent.new(href: new_group_milestone_path(@group), variant: :confirm, button_options: { data: { testid: "new-group-milestone-link" }}) do
         = _('New milestone')
diff --git a/app/views/groups/settings/_transfer.html.haml b/app/views/groups/settings/_transfer.html.haml
index dfaba6eb164f42ab8142cd49f48dbc4b2de893db..0268d60f52726bf94c245bcabd5d3087ddda1e65 100644
--- a/app/views/groups/settings/_transfer.html.haml
+++ b/app/views/groups/settings/_transfer.html.haml
@@ -11,7 +11,7 @@
   - c.with_body do
     = form_for group, url: transfer_group_path(group), method: :put, html: { id: form_id, class: 'js-group-transfer-form' } do |f|
       %ul
-        - learn_more_link = help_page_url('user/project/repository/index.md', anchor: 'repository-path-changes')
+        - learn_more_link = help_page_url('user/project/repository/_index.md', anchor: 'repository-path-changes')
         - learn_more_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: learn_more_link }
         - warning_text = s_("GroupSettings|Be careful. Changing a group's parent can have unintended side effects. %{learn_more_link_start}Learn more.%{learn_more_link_end}") % { learn_more_link_start: learn_more_link_start, learn_more_link_end: '</a>'.html_safe }
         %li= warning_text.html_safe
diff --git a/app/views/shared/empty_states/_milestones.html.haml b/app/views/shared/empty_states/_milestones.html.haml
index 31b06dbd812a38bfc3469cf73cd01aa98468e157..864867606baa94db318d29d8690ca32a29bb4155 100644
--- a/app/views/shared/empty_states/_milestones.html.haml
+++ b/app/views/shared/empty_states/_milestones.html.haml
@@ -1,4 +1,4 @@
-- learn_more_path = local_assigns.fetch(:learn_more_path, help_page_path('user/project/milestones/index.md'))
+- learn_more_path = local_assigns.fetch(:learn_more_path, help_page_path('user/project/milestones/_index.md'))
 - learn_more_link = link_to _('Learn more.'), learn_more_path
 
 = render Pajamas::EmptyStateComponent.new(svg_path: 'illustrations/empty-state/empty-milestone-md.svg',
diff --git a/app/views/shared/empty_states/_milestones_tab.html.haml b/app/views/shared/empty_states/_milestones_tab.html.haml
index c939c197488099256d3a919bec07616ff9a44fc9..30eab1b9b71a575127c3d266cf362e5ecb9b205e 100644
--- a/app/views/shared/empty_states/_milestones_tab.html.haml
+++ b/app/views/shared/empty_states/_milestones_tab.html.haml
@@ -1,4 +1,4 @@
-- learn_more_path = local_assigns.fetch(:learn_more_path, help_page_path('user/project/milestones/index.md'))
+- learn_more_path = local_assigns.fetch(:learn_more_path, help_page_path('user/project/milestones/_index.md'))
 - learn_more_link = link_to _('Learn more.'), learn_more_path
 - closed_tab_selected = params[:state] == 'closed'
 - title = s_('Milestones|There are no open milestones')
diff --git a/doc/administration/geo/replication/datatypes.md b/doc/administration/geo/replication/datatypes.md
index 264206bb3d4c80c9ea119c31b25c8a826f030865..201c662abf6c6dc669a41755d5e01483c1b5ef84 100644
--- a/doc/administration/geo/replication/datatypes.md
+++ b/doc/administration/geo/replication/datatypes.md
@@ -185,7 +185,7 @@ successfully, you must replicate their data using some other means.
 | Feature                                                                                                               | Replicated (added in GitLab version)                                          | Verified (added in GitLab version)                                            | GitLab-managed object storage replication (added in GitLab version)             | GitLab-managed object storage verification (added in GitLab version)            | Notes |
 |:----------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------|:------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:------|
 | [Application data in PostgreSQL](../../postgresql/_index.md)                                                           | **Yes** (10.2)                                                                | **Yes** (10.2)                                                                | Not applicable                                                                  | Not applicable                                                                  |       |
-| [Project repository](../../../user/project/repository/index.md)                                                       | **Yes** (10.2)                                                                | **Yes** (10.7)                                                                | Not applicable                                                                  | Not applicable                                                                  | Migrated to [self-service framework](../../../development/geo/framework.md) in 16.2. See GitLab issue [#367925](https://gitlab.com/gitlab-org/gitlab/-/issues/367925) for more details.<br /><br />Behind feature flag `geo_project_repository_replication`, enabled by default in (16.3).<br /><br /> All projects, including [archived projects](../../../user/project/working_with_projects.md#archive-a-project), are replicated. |
+| [Project repository](../../../user/project/repository/_index.md)                                                       | **Yes** (10.2)                                                                | **Yes** (10.7)                                                                | Not applicable                                                                  | Not applicable                                                                  | Migrated to [self-service framework](../../../development/geo/framework.md) in 16.2. See GitLab issue [#367925](https://gitlab.com/gitlab-org/gitlab/-/issues/367925) for more details.<br /><br />Behind feature flag `geo_project_repository_replication`, enabled by default in (16.3).<br /><br /> All projects, including [archived projects](../../../user/project/working_with_projects.md#archive-a-project), are replicated. |
 | [Project wiki repository](../../../user/project/wiki/_index.md)                                                        | **Yes** (10.2)<sup>2</sup>                                                    | **Yes** (10.7)<sup>2</sup>                                                    | Not applicable                                                                  | Not applicable                                                                  | Migrated to [self-service framework](../../../development/geo/framework.md) in 15.11. See GitLab issue [#367925](https://gitlab.com/gitlab-org/gitlab/-/issues/367925) for more details.<br /><br />Behind feature flag `geo_project_wiki_repository_replication`, enabled by default in (15.11). |
 | [Group wiki repository](../../../user/project/wiki/group.md)                                                          | [**Yes** (13.10)](https://gitlab.com/gitlab-org/gitlab/-/issues/208147)       | [**Yes** (16.3)](https://gitlab.com/gitlab-org/gitlab/-/issues/323897)        | Not applicable                                                                  | Not applicable                                                                  | Behind feature flag `geo_group_wiki_repository_replication`, enabled by default. |
 | [Uploads](../../uploads.md)                                                                                           | **Yes** (10.2)                                                                | **Yes** (14.6)                                                                | [**Yes** (15.1)](https://gitlab.com/groups/gitlab-org/-/epics/5551)             | [**Yes** (16.4)<sup>3</sup>](https://gitlab.com/groups/gitlab-org/-/epics/8056) | Replication is behind the feature flag `geo_upload_replication`, enabled by default. Verification was behind the feature flag `geo_upload_verification`, removed in 14.8. |
diff --git a/doc/administration/get_started.md b/doc/administration/get_started.md
index 5aa929dc39963a344309fa12bc45019766492d23..cc9071a12c67eb35dc16b045b3dc1e10ee2f4706 100644
--- a/doc/administration/get_started.md
+++ b/doc/administration/get_started.md
@@ -52,7 +52,7 @@ Get started:
 - [Run multiple Agile teams](https://www.youtube.com/watch?v=VR2r1TJCDew).
 - [Sync group memberships by using LDAP](auth/ldap/ldap_synchronization.md#group-sync).
 - Manage user access with inherited permissions. Use up to 20 levels of subgroups to organize both teams and projects.
-  - [Inherited membership](../user/project/members/index.md#membership-types).
+  - [Inherited membership](../user/project/members/_index.md#membership-types).
   - [Example](../user/group/subgroups/_index.md).
 
 ## Import projects
diff --git a/doc/administration/gitaly/_index.md b/doc/administration/gitaly/_index.md
index 4cb28f3dee812a9261d5fbb72d7defd42d63aa22..f6eebfd50ed460fc4ae25658f071a0779acf3854 100644
--- a/doc/administration/gitaly/_index.md
+++ b/doc/administration/gitaly/_index.md
@@ -34,7 +34,7 @@ Gitaly implements a client-server architecture:
 Gitaly manages only Git repository access for GitLab. Other types of GitLab data aren't accessed
 using Gitaly.
 
-GitLab accesses [repositories](../../user/project/repository/index.md) through the configured
+GitLab accesses [repositories](../../user/project/repository/_index.md) through the configured
 [repository storages](../repository_storage_paths.md). Each new repository is stored on one of the
 repository storages based on their
 [configured weights](../repository_storage_paths.md#configure-where-new-repositories-are-stored). Each
diff --git a/doc/administration/repository_storage_paths.md b/doc/administration/repository_storage_paths.md
index 8e935867c7f120a499cd91e947b16fd628d17641..436bfe42df87f09713bf3690eba0348b5ca3f71b 100644
--- a/doc/administration/repository_storage_paths.md
+++ b/doc/administration/repository_storage_paths.md
@@ -9,7 +9,7 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab Self-Managed
 
-GitLab stores [repositories](../user/project/repository/index.md) on repository storage. Repository
+GitLab stores [repositories](../user/project/repository/_index.md) on repository storage. Repository
 storage is either:
 
 - Physical storage configured with a `gitaly_address` that points to a [Gitaly node](gitaly/_index.md).
diff --git a/doc/api/commits.md b/doc/api/commits.md
index eee06d31d736d22e6847f8d9feee06d976e122b9..3973bbe8f9527989062ffb77f287a6fe9a30ac71 100644
--- a/doc/api/commits.md
+++ b/doc/api/commits.md
@@ -10,7 +10,7 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated
 
-This API operates on [repository commits](https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository). Read more about [GitLab-specific information](../user/project/repository/index.md#commit-changes-to-a-repository) for commits.
+This API operates on [repository commits](https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository). Read more about [GitLab-specific information](../user/project/repository/_index.md#commit-changes-to-a-repository) for commits.
 
 ## Responses
 
diff --git a/doc/api/group_milestones.md b/doc/api/group_milestones.md
index 7f0654a701917a7b8567e473351a6cf2e0dfd3e1..0d58c104d455156073d2781f4ab537ef3e8c469f 100644
--- a/doc/api/group_milestones.md
+++ b/doc/api/group_milestones.md
@@ -9,7 +9,7 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated
 
-Use the group [milestones](../user/project/milestones/index.md) using the REST API.
+Use the group [milestones](../user/project/milestones/_index.md) using the REST API.
 There's a separate [project milestones API](milestones.md) page.
 
 ## List group milestones
diff --git a/doc/api/milestones.md b/doc/api/milestones.md
index 4bb5c2da17caf04c1d3e3a394ec531525ccecc02..7c45934030853d88032b3e23c2522c89d43ca042 100644
--- a/doc/api/milestones.md
+++ b/doc/api/milestones.md
@@ -9,7 +9,7 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated
 
-Use project [milestones](../user/project/milestones/index.md) with the REST API.
+Use project [milestones](../user/project/milestones/_index.md) with the REST API.
 There's a separate [group milestones API](group_milestones.md) page.
 
 ## List project milestones
diff --git a/doc/api/notes.md b/doc/api/notes.md
index 6c474a92304f5977c25a0553b4c69f514faeb0a9..3a2a88855963ca0bcc5d7fe51394cf4aaada30ea 100644
--- a/doc/api/notes.md
+++ b/doc/api/notes.md
@@ -11,7 +11,7 @@ DETAILS:
 
 Notes are comments on:
 
-- [Commits](../user/project/repository/index.md#commit-changes-to-a-repository)
+- [Commits](../user/project/repository/_index.md#commit-changes-to-a-repository)
 - [Epics](../user/group/epics/_index.md)
 - [Issues](../user/project/issues/index.md)
 - [Merge requests](../user/project/merge_requests/_index.md)
diff --git a/doc/api/projects.md b/doc/api/projects.md
index f15c17cfbb84718198c4267411a69c6835a86a13..f6986b5dcc1774b8f4194db10a50684922e83dad 100644
--- a/doc/api/projects.md
+++ b/doc/api/projects.md
@@ -1469,12 +1469,12 @@ settings with access control options can be one of:
 | `infrastructure_access_level`          | string | No       | Set visibility of [infrastructure management](../user/infrastructure/_index.md). |
 | `issues_access_level`                  | string | No       | Set visibility of [issues](../user/project/issues/index.md). |
 | `merge_requests_access_level`          | string | No       | Set visibility of [merge requests](../user/project/merge_requests/_index.md). |
-| `model_experiments_access_level`       | string | No       | Set visibility of [machine learning model experiments](../user/project/ml/experiment_tracking/index.md). |
-| `model_registry_access_level`          | string | No       | Set visibility of [machine learning model registry](../user/project/ml/model_registry/index.md#access-the-model-registry). |
+| `model_experiments_access_level`       | string | No       | Set visibility of [machine learning model experiments](../user/project/ml/experiment_tracking/_index.md). |
+| `model_registry_access_level`          | string | No       | Set visibility of [machine learning model registry](../user/project/ml/model_registry/_index.md#access-the-model-registry). |
 | `monitor_access_level`                 | string | No       | Set visibility of [application performance monitoring](../operations/_index.md). |
 | `pages_access_level`                   | string | No       | Set visibility of [GitLab Pages](../user/project/pages/pages_access_control.md). |
 | `releases_access_level`                | string | No       | Set visibility of [releases](../user/project/releases/index.md). |
-| `repository_access_level`              | string | No       | Set visibility of [repository](../user/project/repository/index.md). |
+| `repository_access_level`              | string | No       | Set visibility of [repository](../user/project/repository/_index.md). |
 | `requirements_access_level`            | string | No       | Set visibility of [requirements management](../user/project/requirements/_index.md). |
 | `security_and_compliance_access_level` | string | No       | Set visibility of [security and compliance](../user/application_security/index.md). |
 | `snippets_access_level`                | string | No       | Set visibility of [snippets](../user/snippets.md#change-default-visibility-of-snippets). |
@@ -1592,12 +1592,12 @@ settings with access control options can be one of:
 | `infrastructure_access_level`          | string | No       | Set visibility of [infrastructure management](../user/infrastructure/_index.md). |
 | `issues_access_level`                  | string | No       | Set visibility of [issues](../user/project/issues/index.md). |
 | `merge_requests_access_level`          | string | No       | Set visibility of [merge requests](../user/project/merge_requests/_index.md). |
-| `model_experiments_access_level`       | string | No       | Set visibility of [machine learning model experiments](../user/project/ml/experiment_tracking/index.md). |
-| `model_registry_access_level`          | string | No       | Set visibility of [machine learning model registry](../user/project/ml/model_registry/index.md#access-the-model-registry). |
+| `model_experiments_access_level`       | string | No       | Set visibility of [machine learning model experiments](../user/project/ml/experiment_tracking/_index.md). |
+| `model_registry_access_level`          | string | No       | Set visibility of [machine learning model registry](../user/project/ml/model_registry/_index.md#access-the-model-registry). |
 | `monitor_access_level`                 | string | No       | Set visibility of [application performance monitoring](../operations/_index.md). |
 | `pages_access_level`                   | string | No       | Set visibility of [GitLab Pages](../user/project/pages/pages_access_control.md). |
 | `releases_access_level`                | string | No       | Set visibility of [releases](../user/project/releases/index.md). |
-| `repository_access_level`              | string | No       | Set visibility of [repository](../user/project/repository/index.md). |
+| `repository_access_level`              | string | No       | Set visibility of [repository](../user/project/repository/_index.md). |
 | `requirements_access_level`            | string | No       | Set visibility of [requirements management](../user/project/requirements/_index.md). |
 | `security_and_compliance_access_level` | string | No       | Set visibility of [security and compliance](../user/application_security/index.md). |
 | `snippets_access_level`                | string | No       | Set visibility of [snippets](../user/snippets.md#change-default-visibility-of-snippets). |
@@ -1730,12 +1730,12 @@ Supported project visibility attributes:
 | `infrastructure_access_level`          | string | No       | Set visibility of [infrastructure management](../user/infrastructure/_index.md). |
 | `issues_access_level`                  | string | No       | Set visibility of [issues](../user/project/issues/index.md). |
 | `merge_requests_access_level`          | string | No       | Set visibility of [merge requests](../user/project/merge_requests/_index.md). |
-| `model_experiments_access_level`       | string | No       | Set visibility of [machine learning model experiments](../user/project/ml/experiment_tracking/index.md). |
-| `model_registry_access_level`          | string | No       | Set visibility of [machine learning model registry](../user/project/ml/model_registry/index.md#access-the-model-registry). |
+| `model_experiments_access_level`       | string | No       | Set visibility of [machine learning model experiments](../user/project/ml/experiment_tracking/_index.md). |
+| `model_registry_access_level`          | string | No       | Set visibility of [machine learning model registry](../user/project/ml/model_registry/_index.md#access-the-model-registry). |
 | `monitor_access_level`                 | string | No       | Set visibility of [application performance monitoring](../operations/_index.md). |
 | `pages_access_level`                   | string | No       | Set visibility of [GitLab Pages](../user/project/pages/pages_access_control.md). |
 | `releases_access_level`                | string | No       | Set visibility of [releases](../user/project/releases/index.md). |
-| `repository_access_level`              | string | No       | Set visibility of [repository](../user/project/repository/index.md). |
+| `repository_access_level`              | string | No       | Set visibility of [repository](../user/project/repository/_index.md). |
 | `requirements_access_level`            | string | No       | Set visibility of [requirements management](../user/project/requirements/_index.md). |
 | `security_and_compliance_access_level` | string | No       | Set visibility of [security and compliance](../user/application_security/index.md). |
 | `snippets_access_level`                | string | No       | Set visibility of [snippets](../user/snippets.md#change-default-visibility-of-snippets). |
diff --git a/doc/api/resource_milestone_events.md b/doc/api/resource_milestone_events.md
index 012c758c71af2ce7c568263184f30548cfd51bdf..bab190a632450b25e38f4c1893cb4b1cad94494b 100644
--- a/doc/api/resource_milestone_events.md
+++ b/doc/api/resource_milestone_events.md
@@ -9,7 +9,7 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated
 
-Resource [milestone](../user/project/milestones/index.md) events keep track of what happens to
+Resource [milestone](../user/project/milestones/_index.md) events keep track of what happens to
 GitLab [issues](../user/project/issues/index.md) and [merge requests](../user/project/merge_requests/_index.md).
 
 Use them to track which milestone was added or removed, who did it, and when it happened.
diff --git a/doc/api/rest/_index.md b/doc/api/rest/_index.md
index bcddd7d322a94b82edff468ea7c885df75ecd417..9b27080c6f2cef9de0c7ebe8554f96508a339d05 100644
--- a/doc/api/rest/_index.md
+++ b/doc/api/rest/_index.md
@@ -240,7 +240,7 @@ In boolean arguments, you should only set `true` or `false` values (not `null`).
 > - Introduced in GitLab 16.4 [with a flag](../../user/feature_flags.md) named `api_redirect_moved_projects`. Disabled by default.
 > - [Generally available](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/137578) in GitLab 16.7. Feature flag `api_redirect_moved_projects` removed.
 
-After [path changes](../../user/project/repository/index.md#repository-path-changes) the
+After [path changes](../../user/project/repository/_index.md#repository-path-changes) the
 REST API might respond with a message noting that the endpoint has moved. When this happens, used
 the endpoint specified in the `Location` header.
 
diff --git a/doc/ci/debugging.md b/doc/ci/debugging.md
index ecba27ed3c214a467872673e1ccbfc536dd9a0d2..1d375300e025bb0746b63e027b54288a6c652a7a 100644
--- a/doc/ci/debugging.md
+++ b/doc/ci/debugging.md
@@ -406,7 +406,7 @@ To resolve this, check that:
 
 - The path of the project is in the format `my-group/my-project` and does not include
   any folders in the repository.
-- The user running the pipeline is a [member of the projects](../user/project/members/index.md#add-users-to-a-project)
+- The user running the pipeline is a [member of the projects](../user/project/members/_index.md#add-users-to-a-project)
   that contain the included files. Users must also have the [permission](../user/permissions.md#cicd)
   to run CI/CD jobs in the same projects.
 
diff --git a/doc/development/permissions/custom_roles.md b/doc/development/permissions/custom_roles.md
index a226caba78e9eecb6c37a62c01add56fc0b1d6e9..aa209018d6a03f59895d465e468b6933a7e1435d 100644
--- a/doc/development/permissions/custom_roles.md
+++ b/doc/development/permissions/custom_roles.md
@@ -23,7 +23,7 @@ With custom roles, the customers can decide which abilities they want to assign
 - In the default role system, reading of vulnerabilities is limited to a Developer role.
 - In the custom role system, a customer can assign this ability to a new custom role based on any default role.
 
-Like default roles, custom roles are [inherited](../../user/project/members/index.md#membership-types) within a group hierarchy. If a user has custom role for a group, that user will also have a custom role for any projects or subgroups within the group.
+Like default roles, custom roles are [inherited](../../user/project/members/_index.md#membership-types) within a group hierarchy. If a user has custom role for a group, that user will also have a custom role for any projects or subgroups within the group.
 
 ## Technical overview
 
diff --git a/doc/operations/incident_management/incidents.md b/doc/operations/incident_management/incidents.md
index 748c2faeb54bd5da5dce995e5ecb5c62ad51cebb..7ae557c4aff0233318ddf0894ad0a4dfe673c73c 100644
--- a/doc/operations/incident_management/incidents.md
+++ b/doc/operations/incident_management/incidents.md
@@ -185,7 +185,7 @@ label to the incident.
 - [Automatically close incidents via recovery alerts](manage_incidents.md#automatically-close-incidents-via-recovery-alerts)
 - [Add a to-do item](../../user/todos.md#create-a-to-do-item)
 - [Add labels](../../user/project/labels.md)
-- [Assign a milestone](../../user/project/milestones/index.md)
+- [Assign a milestone](../../user/project/milestones/_index.md)
 - [Make an incident confidential](../../user/project/issues/confidential_issues.md)
 - [Set a due date](../../user/project/issues/due_dates.md)
 - [Toggle notifications](../../user/profile/notifications.md#edit-notification-settings-for-issues-merge-requests-and-epics)
diff --git a/doc/operations/incident_management/manage_incidents.md b/doc/operations/incident_management/manage_incidents.md
index 0040172ceecd65fd24853a4c5b4fec590af093b4..0b98a4593217e98311da12b94f4af1acdbe6a8d2 100644
--- a/doc/operations/incident_management/manage_incidents.md
+++ b/doc/operations/incident_management/manage_incidents.md
@@ -281,7 +281,7 @@ they have the following actions in common:
 
 - [Add a to-do item](../../user/todos.md#create-a-to-do-item)
 - [Add labels](../../user/project/labels.md#assign-and-unassign-labels)
-- [Assign a milestone](../../user/project/milestones/index.md#assign-a-milestone-to-an-issue-or-merge-request)
+- [Assign a milestone](../../user/project/milestones/_index.md#assign-a-milestone-to-an-issue-or-merge-request)
 - [Make an incident confidential](../../user/project/issues/confidential_issues.md)
 - [Set a due date](../../user/project/issues/due_dates.md)
 - [Toggle notifications](../../user/profile/notifications.md#edit-notification-settings-for-issues-merge-requests-and-epics)
diff --git a/doc/security/information_exclusivity.md b/doc/security/information_exclusivity.md
index 26835c8a6cb6c83e48635dea9b7d4567dad85059..9444f741c9e800f6213e881641955f7e6d0bb61d 100644
--- a/doc/security/information_exclusivity.md
+++ b/doc/security/information_exclusivity.md
@@ -25,7 +25,7 @@ limitation.
 
 You can take steps to prevent unintentional sharing and information
 destruction. This limitation is the reason why only certain people are allowed
-to [add users to a project](../user/project/members/index.md)
+to [add users to a project](../user/project/members/_index.md)
 and why only a GitLab administrator can
 [force push a protected branch](../user/project/repository/branches/protected.md).
 
diff --git a/doc/security/two_factor_authentication.md b/doc/security/two_factor_authentication.md
index 110e0e2550f148b59ddc9300bf6ffd3e78f1e7c3..ad31ff4c79bd83e709935b0c6e2fb9c66e20f57f 100644
--- a/doc/security/two_factor_authentication.md
+++ b/doc/security/two_factor_authentication.md
@@ -86,7 +86,7 @@ DETAILS:
 You can enforce 2FA for all users in a group or subgroup.
 
 NOTE:
-2FA enforcement applies to both [direct and inherited members](../user/project/members/index.md#membership-types) group members. If 2FA is enforced on a subgroup, members of the parent group must also enroll an authentication factor.
+2FA enforcement applies to both [direct and inherited members](../user/project/members/_index.md#membership-types) group members. If 2FA is enforced on a subgroup, members of the parent group must also enroll an authentication factor.
 
 Prerequisites:
 
diff --git a/doc/subscriptions/bronze_starter.md b/doc/subscriptions/bronze_starter.md
index 97b998a92ba422b460c027ee533e628f7a3a2222..c1c1a75c90c24d34e5a28da9a54345aca874e52c 100644
--- a/doc/subscriptions/bronze_starter.md
+++ b/doc/subscriptions/bronze_starter.md
@@ -16,7 +16,7 @@ the tiers are no longer mentioned in GitLab documentation:
 
 - [Activate GitLab EE with a license](../administration/license.md)
 - [Add a help message to the sign-in page](../administration/settings/help_page.md#add-a-help-message-to-the-sign-in-page)
-- [Burndown and burnup charts](../user/project/milestones/burndown_and_burnup_charts.md) in the [Milestone View](../user/project/milestones/index.md#burndown-charts),
+- [Burndown and burnup charts](../user/project/milestones/burndown_and_burnup_charts.md) in the [Milestone View](../user/project/milestones/_index.md#burndown-charts),
 - [Code owners](../user/project/codeowners/_index.md)
 - Description templates:
   - [Setting a default template for merge requests and issues](../user/project/description_templates.md#set-a-default-template-for-merge-requests-and-issues)
diff --git a/doc/topics/git/add_files.md b/doc/topics/git/add_files.md
index f6b75eaf0d67e5bd57b5d8e81f34e31d2243f02a..d9f3cda58893f7eb92c7184224a97e0145096904 100644
--- a/doc/topics/git/add_files.md
+++ b/doc/topics/git/add_files.md
@@ -64,6 +64,6 @@ If you do not want to edit the commit message, append `--no-edit` to the `commit
 
 ## Related topics
 
-- [Add file from the UI](../../user/project/repository/index.md#add-a-file-from-the-ui)
+- [Add file from the UI](../../user/project/repository/_index.md#add-a-file-from-the-ui)
 - [Add file from the Web IDE](../../user/project/repository/web_editor.md#upload-a-file)
 - [Sign commits](../../user/project/repository/signed_commits/gpg.md)
diff --git a/doc/topics/git/get_started.md b/doc/topics/git/get_started.md
index 24319328ed509a9ab888f55ae20c7249d63abaf1..58e08f365bac4e97b54d53cad6a5755363e055fe 100644
--- a/doc/topics/git/get_started.md
+++ b/doc/topics/git/get_started.md
@@ -29,7 +29,7 @@ including the complete history of all changes made to the files.
 Git tracks changes at the file level, so you can view the modifications made to individual
 files over time.
 
-For more information, see [Repositories](../../user/project/repository/index.md).
+For more information, see [Repositories](../../user/project/repository/_index.md).
 
 ## Working directories
 
diff --git a/doc/topics/manage_code.md b/doc/topics/manage_code.md
index 8e62572e2848730462193a5c034768c9bd6ed9ef..abfcda2ac9aa7c8c7ef9891f695bbb3449efe8fe 100644
--- a/doc/topics/manage_code.md
+++ b/doc/topics/manage_code.md
@@ -10,5 +10,5 @@ Store your source files in a repository and create merge requests. Write, debug,
 
 | | | |
 |--|--|--|
-| [**Getting started**](../user/get_started/get_started_managing_code.md)<br>Overview of how features fit together. | [**Repositories**](../user/project/repository/index.md)<br>Version control, code storage, Git repositories, repository monitoring. | [**Merge requests**](../user/project/merge_requests/_index.md)<br>Code review, collaboration, branch merging, commits. |
+| [**Getting started**](../user/get_started/get_started_managing_code.md)<br>Overview of how features fit together. | [**Repositories**](../user/project/repository/_index.md)<br>Version control, code storage, Git repositories, repository monitoring. | [**Merge requests**](../user/project/merge_requests/_index.md)<br>Code review, collaboration, branch merging, commits. |
 | [**Remote development**](../user/project/remote_development/_index.md)<br>Web IDE, workspaces. | | |
diff --git a/doc/topics/plan_and_track.md b/doc/topics/plan_and_track.md
index edf53521da64d7f14cc387e4be5b607c3cff202c..f42a311dc920453dfc6ac30b735ce2c4685b27ff 100644
--- a/doc/topics/plan_and_track.md
+++ b/doc/topics/plan_and_track.md
@@ -24,7 +24,7 @@ with [Scaled Agile Framework (SAFe)](https://handbook.gitlab.com/handbook/market
 | | | |
 |--|--|--|
 | [**Getting started**](../user/get_started/get_started_planning_work.md)<br>Overview of how features fit together. | [**Tutorial: Use GitLab for scrum**](../tutorials/scrum_events/_index.md)<br>Sprints, backlog, user stories, scrum lifecycle. | [**Tutorial: Use GitLab for Kanban**](../tutorials/kanban/_index.md)<br>Work in progress, flow, distribution. |
-| [**Labels**](../user/project/labels.md)<br>Project labels, group labels, nested scopes, filtering. | [**Iterations**](../user/group/iterations/_index.md)<br>Time-boxed workflow, program increments, cadence, sprints. | [**Milestones**](../user/project/milestones/index.md)<br>Burndown charts, goals, progress tracking, releases. |
+| [**Labels**](../user/project/labels.md)<br>Project labels, group labels, nested scopes, filtering. | [**Iterations**](../user/group/iterations/_index.md)<br>Time-boxed workflow, program increments, cadence, sprints. | [**Milestones**](../user/project/milestones/_index.md)<br>Burndown charts, goals, progress tracking, releases. |
 | [**Issues**](../user/project/issues/index.md)<br>Tasks, bug reports, feature requests, tracking. | [**Issue boards**](../user/project/issue_board.md)<br>Visualization, workflow, Kanban, prioritization. | [**Comments and threads**](../user/discussions/_index.md)<br> Mentions, locked discussions, internal notes, thread resolution. |
 | [**Tasks**](../user/tasks.md)<br>Task labels, confidential tasks, linked items, task weights. | [**Requirements**](../user/project/requirements/_index.md)<br>Acceptance criteria, requirements test reports, CSV import. | [**Time tracking**](../user/project/time_tracking.md)<br>Estimates, time spent, reporting. |
 | [**CRM**](../user/crm/_index.md)<br>Customer management, organizations, contacts, permissions. | [**Wikis**](../user/project/wiki/_index.md)<br>Documentation, external wikis, wiki events, history. | [**Epics**](../user/group/epics/_index.md)<br>Roadmaps, hierarchies, planning, issue progress. |
diff --git a/doc/topics/set_up_organization.md b/doc/topics/set_up_organization.md
index 715250258bc58892fe8d212ba1436ee4f84a9a50..40c3f4bc6a79debb849dafee7a925287505883ed 100644
--- a/doc/topics/set_up_organization.md
+++ b/doc/topics/set_up_organization.md
@@ -11,7 +11,7 @@ and give everyone access to the projects they need.
 
 | | | |
 |--|--|--|
-| [**Tutorial: Set up your organization**](../tutorials/manage_user/_index.md)<br>Setup, configuration, onboarding, organization structure. | [**Namespaces**](../user/namespace/_index.md)<br>Organization, hierarchy, project grouping. | [**Members**](../user/project/members/index.md)<br>User management, roles, permissions, access levels. |
+| [**Tutorial: Set up your organization**](../tutorials/manage_user/_index.md)<br>Setup, configuration, onboarding, organization structure. | [**Namespaces**](../user/namespace/_index.md)<br>Organization, hierarchy, project grouping. | [**Members**](../user/project/members/_index.md)<br>User management, roles, permissions, access levels. |
 | [**Organization** (in development)](../user/organization/_index.md)<br>Namespace hierarchy. | [**Groups**](../user/group/_index.md)<br>Project management, access control, client groups, team groups. | [**Sharing projects and groups**](../user/project/members/sharing_projects_groups.md)<br>Invitations, group inheritance, project visibility. |
 | [**Compliance**](../administration/compliance.md)<br>Compliance center, audit events, security policies, compliance frameworks. | [**Enterprise users**](../user/enterprise_user/_index.md)<br>Domain verification, two-factor authentication, enterprise user management, SAML response. | [**Service accounts**](../user/profile/service_accounts.md)<br>Machine user, rate limits, personal access tokens. |
 | [**User account options**](../user/profile/index.md)<br>Profile settings, preferences, authentication, notifications. | [**SSH keys**](../user/ssh.md)<br>Authentication, permissions, key types, ownership. | [**GitLab.com settings**](../user/gitlab_com/_index.md)<br>Instance configurations. |
diff --git a/doc/tutorials/website_project_with_analytics/_index.md b/doc/tutorials/website_project_with_analytics/_index.md
index 154d4a161dd34877fe187bbe0c4ccbf037160ef6..4cdff3db514a163da6956425589bcfc56d7486f1 100644
--- a/doc/tutorials/website_project_with_analytics/_index.md
+++ b/doc/tutorials/website_project_with_analytics/_index.md
@@ -73,7 +73,7 @@ To invite a user to the `My website` project:
 1. Select **Invite**.
 
 The invited user should now be a member of the project.
-You can [view, filter, and search for members](../../user/project/members/index.md#filter-and-sort-project-members) of your project.
+You can [view, filter, and search for members](../../user/project/members/_index.md#filter-and-sort-project-members) of your project.
 
 ## Create project labels
 
diff --git a/doc/user/custom_roles.md b/doc/user/custom_roles.md
index 97a14ffcd20844ec0b0e421b09aab0a2af2b9508..1674d83a0520efb8e8ddf8d6d33ab422a4b8c496 100644
--- a/doc/user/custom_roles.md
+++ b/doc/user/custom_roles.md
@@ -156,7 +156,7 @@ If you are adding a user with a custom role:
 To add a user with a custom role:
 
 - To a group, see [add users to a group](group/_index.md#add-users-to-a-group).
-- To a project, see [add users to a project](project/members/index.md#add-users-to-a-project).
+- To a project, see [add users to a project](project/members/_index.md#add-users-to-a-project).
 
 If a group or project member has a custom role, the [group or project members list](group/_index.md#view-group-members) displays **Custom Role** in the **Max role** column of the table.
 
@@ -214,7 +214,7 @@ If you are unassigning a custom role from a:
 
 You can remove a custom role from a group or project only if no group or project members have that role. To do this, you can use one of the following methods:
 
-- Remove a member with a custom role from a [group](group/_index.md#remove-a-member-from-the-group) or [project](project/members/index.md#remove-a-member-from-a-project).
+- Remove a member with a custom role from a [group](group/_index.md#remove-a-member-from-the-group) or [project](project/members/_index.md#remove-a-member-from-a-project).
 - [Use the UI to change the user role](#use-the-ui-to-change-user-role).
 - [Use the API to change the user role](#use-the-api-to-change-user-role).
 
@@ -243,7 +243,7 @@ curl --request PUT --header "Content-Type: application/json" --header "Authoriza
 ## Inheritance
 
 If a user belongs to a group, they are a direct member of the group
-and an [inherited member](project/members/index.md#membership-types)
+and an [inherited member](project/members/_index.md#membership-types)
 of any subgroups or projects. If a user is assigned a custom role
 by the top-level group, the permissions of the role are also inherited by subgroups
 and projects.
diff --git a/doc/user/get_started/get_started_managing_code.md b/doc/user/get_started/get_started_managing_code.md
index 835296fa5c598249acc9e79f9481345ae53c2a42..a60666bb218494d51552a53aca25e2250377237c 100644
--- a/doc/user/get_started/get_started_managing_code.md
+++ b/doc/user/get_started/get_started_managing_code.md
@@ -31,7 +31,7 @@ a project provides a comprehensive environment for the entire development lifecy
 
 For details, see:
 
-- [Create a repository](../project/repository/index.md#create-a-repository)
+- [Create a repository](../project/repository/_index.md#create-a-repository)
 
 ## Step 2: Write your code
 
@@ -56,7 +56,7 @@ don't interfere with one another.
 
 For details, see:
 
-- [Create a file in the repository from the UI](../project/repository/index.md#add-a-file-from-the-ui)
+- [Create a file in the repository from the UI](../project/repository/_index.md#add-a-file-from-the-ui)
 - [Open a file in the Web IDE](../project/web_ide/_index.md#from-a-file-or-directory)
 - [Create a remote development environment with workspaces](../workspace/index.md)
 - [Available editor extensions](../../editor_extensions/_index.md)
diff --git a/doc/user/get_started/get_started_planning_work.md b/doc/user/get_started/get_started_planning_work.md
index 0c6d1524779196913d37ba92b287fc31ea3407a2..7237bcc2e163fcf46471b4745c6c5ccd42a475bb 100644
--- a/doc/user/get_started/get_started_planning_work.md
+++ b/doc/user/get_started/get_started_planning_work.md
@@ -26,7 +26,7 @@ to release every two weeks.
 
 For more information, see:
 
-- [Milestones](../project/milestones/index.md)
+- [Milestones](../project/milestones/_index.md)
 - [Iterations](../group/iterations/_index.md)
 
 ## Step 2: Plan and organize work
diff --git a/doc/user/group/_index.md b/doc/user/group/_index.md
index b13f2ede0d1e7ec9c03c3a616756faa87f0463f7..03ea84c5facd85ac5ac1cf9a2b07548e2ec591b2 100644
--- a/doc/user/group/_index.md
+++ b/doc/user/group/_index.md
@@ -323,13 +323,13 @@ To view members of a group:
 A table displays the member's:
 
 - **Account** name and username.
-- **Source** of their [membership](../project/members/index.md#membership-types).
+- **Source** of their [membership](../project/members/_index.md#membership-types).
   For transparency, GitLab displays all membership sources of group members.
   Members who have multiple membership sources are displayed and counted as separate members.
   For example, if a member has been added to the group both directly and through inheritance,
   the member is displayed twice in the **Members** table, with different sources,
   and is counted as two individual members of the group.
-- [**Role**](../project/members/index.md#which-roles-you-can-assign) in the group.
+- [**Role**](../project/members/_index.md#which-roles-you-can-assign) in the group.
 - **Expiration** date of their group membership.
 - **Activity** related to their account.
 
@@ -459,7 +459,7 @@ To remove a member from a group:
    - **Also unassign this user from linked issues and merge requests**
 1. Select **Remove member**.
 
-GitLab administrators can also [ensure removed users cannot invite themselves back](../project/members/index.md#ensure-removed-users-cannot-invite-themselves-back).
+GitLab administrators can also [ensure removed users cannot invite themselves back](../project/members/_index.md#ensure-removed-users-cannot-invite-themselves-back).
 
 ## Add projects to a group
 
diff --git a/doc/user/group/access_and_permissions.md b/doc/user/group/access_and_permissions.md
index 80048b27055509d4a07bfe1feb5fab9e975a1ccc..03f29a377919324fdab31b132d4c1bc079ad2c0e 100644
--- a/doc/user/group/access_and_permissions.md
+++ b/doc/user/group/access_and_permissions.md
@@ -299,9 +299,9 @@ LDAP user permissions can be manually overridden by an administrator. To overrid
 1. Select **Manage > Members**. If LDAP synchronization
    has granted a user a role with:
    - More permissions than the parent group membership, that user is displayed as having
-     [direct membership](../project/members/index.md#display-direct-members) of the group.
+     [direct membership](../project/members/_index.md#display-direct-members) of the group.
    - The same or fewer permissions than the parent group membership, that user is displayed as having
-     [inherited membership](../project/members/index.md#membership-types) of the group.
+     [inherited membership](../project/members/_index.md#membership-types) of the group.
 1. Optional. If the user you want to edit is displayed as having inherited membership,
    [filter the subgroup to show direct members](_index.md#filter-a-group) before
    overriding LDAP user permissions.
@@ -329,7 +329,7 @@ In viewing the log entries, compare `remote.ip` with the list of [allowed IP add
 If a group Owner cannot update permissions for a group member, check which memberships
 are listed. Group Owners can only update direct memberships.
 
-Members added directly to a subgroup are still considered [inherited members](../project/members/index.md#membership-types)
+Members added directly to a subgroup are still considered [inherited members](../project/members/_index.md#membership-types)
 if they have the same or a higher role in the parent group.
 
 To view and update direct memberships, [filter the group to show direct members](_index.md#filter-a-group).
diff --git a/doc/user/group/custom_project_templates.md b/doc/user/group/custom_project_templates.md
index 07cf17ac3c4554e8511069c41c215676d4241354..a1f8b66ae0425673a5e5c6bcf714b5bb36b16a2c 100644
--- a/doc/user/group/custom_project_templates.md
+++ b/doc/user/group/custom_project_templates.md
@@ -47,7 +47,7 @@ Projects in nested subgroups are not included in the template list.
 - Private projects can be selected only by users who are members of the projects.
 
 There is a [known issue](https://gitlab.com/gitlab-org/gitlab/-/issues/295646):
-[Inherited members](../project/members/index.md#membership-types) can't select project templates,
+[Inherited members](../project/members/_index.md#membership-types) can't select project templates,
 unless the `project_templates_without_min_access` feature flag is enabled.
 This feature flag [is disabled](https://gitlab.com/gitlab-org/gitlab/-/issues/425452)
 on GitLab.com, and so users must be granted direct membership of the template project.
diff --git a/doc/user/group/import/direct_transfer_migrations.md b/doc/user/group/import/direct_transfer_migrations.md
index 5115c42ef82907fb5b37a000bd548689035ea728..d862be4bfc073e69b2e1003d966816ca150c793b 100644
--- a/doc/user/group/import/direct_transfer_migrations.md
+++ b/doc/user/group/import/direct_transfer_migrations.md
@@ -90,7 +90,7 @@ see [user contribution and membership mapping](../../project/import/index.md#use
 
 Users are never created during a migration. Instead, contributions and membership of users on the source instance are
 mapped to users on the destination instance. The type of mapping of a user's membership depends on the
-[membership type](../../project/members/index.md#membership-types) on source instance:
+[membership type](../../project/members/_index.md#membership-types) on source instance:
 
 - Direct memberships are mapped as direct memberships on the destination instance.
 - Inherited memberships are mapped as inherited memberships on the destination instance.
@@ -98,7 +98,7 @@ mapped to users on the destination instance. The type of mapping of a user's mem
   membership. Full support for mapping shared memberships is proposed in
   [issue 458345](https://gitlab.com/gitlab-org/gitlab/-/issues/458345).
 
-When mapping [inherited and shared](../../project/members/index.md#membership-types) memberships, if the user
+When mapping [inherited and shared](../../project/members/_index.md#membership-types) memberships, if the user
 has an existing membership in the destination namespace with a [higher role](../../permissions.md#roles) than
 the one being mapped, the membership is mapped as a direct membership instead. This ensures the member does not get
 elevated permissions.
diff --git a/doc/user/group/iterations/_index.md b/doc/user/group/iterations/_index.md
index a47382484cec2cc85806f2c5e39947a782157e2e..f96c68305f86063776fffe2615740a566fd63263 100644
--- a/doc/user/group/iterations/_index.md
+++ b/doc/user/group/iterations/_index.md
@@ -13,7 +13,7 @@ An iteration in GitLab refers to a time-boxed workflow that groups issues to be
 a specific period of time, usually lasting 1-3 weeks.
 
 Teams can use iterations to track velocity and volatility metrics.
-For tracking the same item over multiple concurrent periods, you can use iterations with [milestones](../../project/milestones/index.md).
+For tracking the same item over multiple concurrent periods, you can use iterations with [milestones](../../project/milestones/_index.md).
 Create and manage various [iteration cadences](#iteration-cadences) in a group.
 
 For example, you can use:
@@ -317,7 +317,7 @@ To view an iteration report:
 ### Iteration burndown and burnup charts
 
 The iteration report includes [burndown and burnup charts](../../project/milestones/burndown_and_burnup_charts.md),
-similar to how they appear when viewing a [milestone](../../project/milestones/index.md):
+similar to how they appear when viewing a [milestone](../../project/milestones/_index.md):
 
 - Burndown charts help track completion progress of total scope.
 - Burnup charts track the daily total count and weight of issues added to and completed in a given timebox.
diff --git a/doc/user/group/manage.md b/doc/user/group/manage.md
index 61d849d96b6f0f57951bf982792cbc13d1dabee8..b47a93537332647fdff5f9db5bd60a0ae63121b5 100644
--- a/doc/user/group/manage.md
+++ b/doc/user/group/manage.md
@@ -53,7 +53,7 @@ member with the Owner role.
 ## Change a group's path
 
 Changing a group's path (group URL) can have unintended side effects. Read how redirects behave
-for [projects](../project/repository/index.md#repository-path-changes)
+for [projects](../project/repository/_index.md#repository-path-changes)
 and in the [API](../../api/rest/_index.md#redirects)
 before you proceed.
 
@@ -113,7 +113,7 @@ If you need to copy a group to a different GitLab instance,
 
 When transferring groups, note:
 
-- Changing a group's parent can have unintended side effects. See [what happens when a repository path changes](../project/repository/index.md#repository-path-changes).
+- Changing a group's parent can have unintended side effects. See [what happens when a repository path changes](../project/repository/_index.md#repository-path-changes).
 - You must update your local repositories to point to the new location.
 - If the immediate parent group's visibility is lower than the group's current visibility, visibility levels for subgroups and projects change to match the new parent group's visibility.
 - Only explicit group membership is transferred, not inherited membership. If the group's Owners have only inherited membership, this leaves the group without an Owner. In this case, the user transferring the group becomes the group's Owner.
diff --git a/doc/user/group/saml_sso/group_sync.md b/doc/user/group/saml_sso/group_sync.md
index 6a27bca86f68f9553d5519edeacb06a68f4f8e72..d10d59b8dd419af39de070c03239f3db40252706 100644
--- a/doc/user/group/saml_sso/group_sync.md
+++ b/doc/user/group/saml_sso/group_sync.md
@@ -119,9 +119,9 @@ role.
 Users granted:
 
 - A higher role with Group Sync are displayed as having
-  [direct membership](../../project/members/index.md#display-direct-members) of the group.
+  [direct membership](../../project/members/_index.md#display-direct-members) of the group.
 - A lower or the same role with Group Sync are displayed as having
-  [inherited membership](../../project/members/index.md#membership-types) of the group.
+  [inherited membership](../../project/members/_index.md#membership-types) of the group.
 
 ### Use the API
 
diff --git a/doc/user/group/subgroups/_index.md b/doc/user/group/subgroups/_index.md
index 8723303b02f0a5b2f343d24e1778588294bb4ac5..3c75db9bbe3ac9dee227390d746de9cb59ee8e5d 100644
--- a/doc/user/group/subgroups/_index.md
+++ b/doc/user/group/subgroups/_index.md
@@ -128,10 +128,10 @@ The member's permissions are inherited from the group into all subgroups.
 
 Subgroup members can be:
 
-1. [Direct members](../../project/members/index.md#add-users-to-a-project) of the subgroup.
-1. [Inherited members](../../project/members/index.md) of the subgroup from the subgroup's parent group.
+1. [Direct members](../../project/members/_index.md#add-users-to-a-project) of the subgroup.
+1. [Inherited members](../../project/members/_index.md) of the subgroup from the subgroup's parent group.
 1. Members of a group that was [shared with the subgroup's top-level group](../../project/members/sharing_projects_groups.md#invite-a-group-to-a-group).
-1. [Indirect members](../../project/members/index.md) include inherited members and members of a group that was [invited to the subgroup or its ancestors](../../project/members/sharing_projects_groups.md#invite-a-group-to-a-group).
+1. [Indirect members](../../project/members/_index.md) include inherited members and members of a group that was [invited to the subgroup or its ancestors](../../project/members/sharing_projects_groups.md#invite-a-group-to-a-group).
 
 ```mermaid
 %%{init: { "fontFamily": "GitLab Sans" }}%%
diff --git a/doc/user/namespace/_index.md b/doc/user/namespace/_index.md
index 78abc641d4aa37f5252b73d72b8a017211152e7b..a3459ded32bd11edd03d9faac1a31a74a1971766 100644
--- a/doc/user/namespace/_index.md
+++ b/doc/user/namespace/_index.md
@@ -25,7 +25,7 @@ GitLab has two types of namespaces:
   - Groups do not inherit your namespace permissions or group features.
   - All the projects you create are under the scope of this namespace.
   - Changes to your username also change project and namespace URLs. Before you change your username,
-    read about [repository redirects](../project/repository/index.md#repository-path-changes).
+    read about [repository redirects](../project/repository/_index.md#repository-path-changes).
 
 - **Group**: A group or subgroup namespace is based on the group or subgroup name. In group and subgroup namespaces:
   - You can create multiple subgroups to manage multiple projects.
diff --git a/doc/user/okrs.md b/doc/user/okrs.md
index e889345ae33c79da47fbdbb08a3e356ef439ad73..7d8ab6328d1ac493f5a3310c373b791534124f32 100644
--- a/doc/user/okrs.md
+++ b/doc/user/okrs.md
@@ -164,7 +164,7 @@ To add labels to an OKR:
 > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/367463) in GitLab 15.7.
 > - [Changed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/169256) the minimum user role from Reporter to Planner in GitLab 17.7.
 
-You can add an objective to a [milestone](project/milestones/index.md).
+You can add an objective to a [milestone](project/milestones/_index.md).
 You can see the milestone title when you view an objective.
 
 Prerequisites:
diff --git a/doc/user/permissions.md b/doc/user/permissions.md
index 8eee325acee50fe37f379433e21146d743c70f9f..a5fcadfd3874165ae0648d129d49abe594819c48 100644
--- a/doc/user/permissions.md
+++ b/doc/user/permissions.md
@@ -64,7 +64,7 @@ Personal [namespace](namespace/_index.md) owners:
 - For new projects in the namespace, are displayed as having the Owner role.
 
 For more information about how to manage project members, see
-[members of a project](project/members/index.md).
+[members of a project](project/members/_index.md).
 
 The following tables list the project permissions available for each role.
 
@@ -186,12 +186,12 @@ Project permissions for [compliance](compliance/_index.md) features including co
 
 ### Machine learning model registry and experiment
 
-Project permissions for [model registry](project/ml/model_registry/index.md) and [model experiments](project/ml/experiment_tracking/index.md).
+Project permissions for [model registry](project/ml/model_registry/_index.md) and [model experiments](project/ml/experiment_tracking/_index.md).
 
 | Action                                                            | Guest | Planner | Reporter | Developer | Maintainer | Owner | Notes |
 | ----------------------------------------------------------------- | :---: | :-----: | :------: | :-------: | :--------: | :---: | :---: |
-| View [models and versions](project/ml/model_registry/index.md)    |   ✓   |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   | Non-members can only view models and versions in public projects with the **Everyone with access** visibility level. Non-members can't view internal projects, even if they're logged in. |
-| View [model experiments](project/ml/experiment_tracking/index.md) |   ✓   |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   | Non-members can only view model experiments in public projects with the **Everyone with access** visibility level. Non-members can't view internal projects, even if they're logged in. |
+| View [models and versions](project/ml/model_registry/_index.md)    |   ✓   |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   | Non-members can only view models and versions in public projects with the **Everyone with access** visibility level. Non-members can't view internal projects, even if they're logged in. |
+| View [model experiments](project/ml/experiment_tracking/_index.md) |   ✓   |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   | Non-members can only view model experiments in public projects with the **Everyone with access** visibility level. Non-members can't view internal projects, even if they're logged in. |
 | Create models, versions, and artifacts                            |       |         |          |     ✓     |     ✓      |   ✓   | You can also upload and download artifacts with the package registry API, which uses it's own set of permissions. |
 | Edit & delete models, versions, and artifacts                     |       |         |          |     ✓     |     ✓      |   ✓   |       |
 | Create experiments and candidates                                 |       |         |          |     ✓     |     ✓      |   ✓   |       |
@@ -233,7 +233,7 @@ Project permissions for [issues](project/issues/index.md):
 | Close and reopen issues                                               |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   | Guest users can close and reopen issues that they authored or are assigned to. |
 | Manage [design management](project/issues/design_management.md) files |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   |       |
 | Manage [issue boards](project/issue_board.md)                         |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   |       |
-| Manage [milestones](project/milestones/index.md)                      |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   |       |
+| Manage [milestones](project/milestones/_index.md)                      |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   |       |
 | Archive or reopen [requirements](project/requirements/_index.md)       |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   | Guest users can archive and reopen issues that they authored or are assigned to. |
 | Create or edit [requirements](project/requirements/_index.md)          |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   | Guest users can modify the title and description that they authored or are assigned to. |
 | Import or export [requirements](project/requirements/_index.md)        |       |    ✓    |    ✓     |     ✓     |     ✓      |   ✓   |       |
@@ -351,7 +351,7 @@ Project permissions for [GitLab Pages](project/pages/index.md):
 
 ### Repository
 
-Project permissions for [repository](project/repository/index.md) features including source code, branches, push rules, and more:
+Project permissions for [repository](project/repository/_index.md) features including source code, branches, push rules, and more:
 
 | Action                                                                | Guest | Planner | Reporter | Developer | Maintainer | Owner | Notes |
 | --------------------------------------------------------------------- | :---: | :-----: | :------: | :-------: | :--------: | :---: | ----- |
@@ -389,11 +389,11 @@ Project permissions for [merge requests](project/merge_requests/_index.md):
 
 ### User management
 
-Project permissions for [user management](project/members/index.md).
+Project permissions for [user management](project/members/_index.md).
 
 | Action                                          | Guest | Planner | Reporter | Developer | Maintainer | Owner | Notes |
 | ----------------------------------------------- | :---: | :-----: | :------: | :-------: | :--------: | :---: | ----- |
-| Manage [team members](project/members/index.md) |       |         |          |           |     ✓      |   ✓   | Maintainers cannot create, demote, or remove Owners, and they cannot promote users to the Owner role. They also cannot approve Owner role access requests. |
+| Manage [team members](project/members/_index.md) |       |         |          |           |     ✓      |   ✓   | Maintainers cannot create, demote, or remove Owners, and they cannot promote users to the Owner role. They also cannot approve Owner role access requests. |
 | Share (invite) projects with groups             |       |         |          |           |     ✓      |   ✓   | When [Share Group Lock](project/members/sharing_projects_groups.md#prevent-a-project-from-being-shared-with-groups) is enabled the project can't be shared with other groups. It does not affect group with group sharing. |
 | View 2FA status of members                      |       |         |          |           |     ✓      |   ✓   |       |
 
@@ -562,7 +562,7 @@ Group permissions for [package registry](packages/_index.md):
 
 ### Repository group permissions
 
-Group permissions for [repository](project/repository/index.md) features including merge requests, push rules, and deploy tokens.
+Group permissions for [repository](project/repository/_index.md) features including merge requests, push rules, and deploy tokens.
 
 | Action                                                                                 | Guest | Planner | Reporter | Developer | Maintainer | Owner | Notes |
 | -------------------------------------------------------------------------------------- | :---: | :-----: | :------: | :-------: | :--------: | :---: | ----- |
@@ -638,7 +638,7 @@ To work around the issue, give these users the Guest role or higher to any proje
 
 - [Custom roles](custom_roles.md)
 - [The GitLab principles behind permissions](https://handbook.gitlab.com/handbook/product/categories/gitlab-the-product/#permissions-in-gitlab)
-- [Members](project/members/index.md)
+- [Members](project/members/_index.md)
 - Customize permissions on [protected branches](project/repository/branches/protected.md)
 - [LDAP user permissions](group/access_and_permissions.md#manage-group-memberships-with-ldap)
 - [Value stream analytics permissions](group/value_stream_analytics/_index.md#access-permissions-for-value-stream-analytics)
diff --git a/doc/user/profile/account/delete_account.md b/doc/user/profile/account/delete_account.md
index 666fd118f0fd20934eafddc7aec0e62d6c1e613a..fb51dd4c38eed2aeaff0b7727ece9265140dd12a 100644
--- a/doc/user/profile/account/delete_account.md
+++ b/doc/user/profile/account/delete_account.md
@@ -106,14 +106,14 @@ When deleting users, you can either:
   - Merge requests.
   - Snippets.
   - [Notes and comments](../../../api/notes.md)
-    on other users' [commits](../../project/repository/index.md#commit-changes-to-a-repository),
+    on other users' [commits](../../project/repository/_index.md#commit-changes-to-a-repository),
     [epics](../../group/epics/_index.md),
     [issues](../../project/issues/index.md),
     [merge requests](../../project/merge_requests/_index.md)
     and [snippets](../../snippets.md).
 
 In both cases, commits retain [user information](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects#_git_commit_objects)
-and therefore data integrity within a [Git repository](../../project/repository/index.md).
+and therefore data integrity within a [Git repository](../../project/repository/_index.md).
 
 An alternative to deleting is [blocking a user](../../../administration/moderate_users.md#block-a-user).
 
diff --git a/doc/user/profile/index.md b/doc/user/profile/index.md
index 611a0d6eec82634c9d53896e84c5ee5bdd109043..4dd35f3e5f66fe6c4d37e996de4d1620846c6254 100644
--- a/doc/user/profile/index.md
+++ b/doc/user/profile/index.md
@@ -31,7 +31,7 @@ To access your user settings:
 
 Your username has a unique [namespace](../namespace/_index.md),
 which is updated when you change your username. Before you change your username, read about
-[how redirects behave](../project/repository/index.md#repository-path-changes).
+[how redirects behave](../project/repository/_index.md#repository-path-changes).
 If you do not want to update the namespace, you can create a new user or group and transfer projects to it instead.
 
 Prerequisites:
diff --git a/doc/user/profile/service_accounts.md b/doc/user/profile/service_accounts.md
index fd381aa1dfa7940a5c3e063e6c1723b1dbbba4ba..ed0f65df377a0911fd06951c854633b83aacae0a 100644
--- a/doc/user/profile/service_accounts.md
+++ b/doc/user/profile/service_accounts.md
@@ -115,7 +115,7 @@ In terms of functionality, a service account is the same as an [external user](.
 and has minimal access when you first create it.
 
 You must manually add the service account to each
-[project](../project/members/index.md#add-users-to-a-project) or
+[project](../project/members/_index.md#add-users-to-a-project) or
 [group](../group/_index.md#add-users-to-a-group) you want the account to have access to.
 
 There is no limit to the number of service accounts you can add to a project or group.
@@ -131,7 +131,7 @@ You can add the service account to a subgroup or project through the:
 
 - [API](../../api/members.md#add-a-member-to-a-group-or-project).
 - [Group members UI](../group/_index.md#add-users-to-a-group).
-- [Project members UI](../project/members/index.md#add-users-to-a-project).
+- [Project members UI](../project/members/_index.md#add-users-to-a-project).
 
 ### Change a service account role in a subgroup or project
 
diff --git a/doc/user/project/codeowners/reference.md b/doc/user/project/codeowners/reference.md
index 2c8855ebf7e7a97249bde5d4b7f92d114bff287d..cd6a1f214e79b347a01cf72d3f5b10f7630fc29c 100644
--- a/doc/user/project/codeowners/reference.md
+++ b/doc/user/project/codeowners/reference.md
@@ -238,7 +238,7 @@ role as Code Owners for `file.md`:
 ## Add a group as a Code Owner
 
 You can set **direct members** of a group or subgroup as a Code Owner.
-For more information about group membership, see [Membership types](../members/index.md#membership-types).
+For more information about group membership, see [Membership types](../members/_index.md#membership-types).
 
 To set direct members of a group or subgroup as a Code Owner:
 
diff --git a/doc/user/project/deploy_keys/index.md b/doc/user/project/deploy_keys/index.md
index f4d88b76b3ab7d28e71c8863088e2cd36a3a08eb..238a6455a8a5d57ac0aa1881d8c8a51244dce889 100644
--- a/doc/user/project/deploy_keys/index.md
+++ b/doc/user/project/deploy_keys/index.md
@@ -194,7 +194,7 @@ What happens to the deploy key when it is disabled depends on the following:
 There are a few scenarios where a deploy key fails to push to a
 [protected branch](../repository/branches/protected.md).
 
-- The owner associated to a deploy key does not have [membership](../members/index.md) to the project of the protected branch.
+- The owner associated to a deploy key does not have [membership](../members/_index.md) to the project of the protected branch.
 - The owner associated to a deploy key has [project membership permissions](../../permissions.md#project-members-permissions) lower than required to **View project code**.
 - The deploy key does not have [read-write permissions for the project](#edit-project-access-permissions-of-a-deploy-key).
 - The deploy key has been [revoked](#revoke-project-access-of-a-deploy-key).
diff --git a/doc/user/project/import/index.md b/doc/user/project/import/index.md
index e4a913d5bb4eb8781a0be0da71ffe899ad7021b3..2fbe125ca1349f61efc92bc4d06a750a362d75c3 100644
--- a/doc/user/project/import/index.md
+++ b/doc/user/project/import/index.md
@@ -284,7 +284,7 @@ Reassigning contributions to users with administrator access is disabled by defa
 ##### Membership security considerations
 
 Because of the GitLab permissions model, when a group or project is imported into an existing parent group, members of
-the parent group are granted [inherited membership](../members/index.md#membership-types) of the imported group or project.
+the parent group are granted [inherited membership](../members/_index.md#membership-types) of the imported group or project.
 
 Selecting a user for contribution and membership reassignment who already has an
 existing inherited membership of the imported group or project can affect how memberships
diff --git a/doc/user/project/import/jira_migration_options.md b/doc/user/project/import/jira_migration_options.md
index 312058969b2e26ebe233bc0ff53823f0e8823b1a..77c06aa11c082d4a356fa5f4632e7fee00b3e653 100644
--- a/doc/user/project/import/jira_migration_options.md
+++ b/doc/user/project/import/jira_migration_options.md
@@ -54,7 +54,7 @@ To import the Jira issue data from a CSV file into your GitLab project:
    1. Review the imported issues to ensure the project migrated to GitLab successfully.
    1. Test the features of your migrated Jira project in GitLab.
 1. Adjust your workflows and settings:
-   1. Customize your GitLab [project settings](../settings/_index.md), such as [description templates](../description_templates.md), [labels](../labels.md), and [milestones](../milestones/index.md), to match your team's needs.
+   1. Customize your GitLab [project settings](../settings/_index.md), such as [description templates](../description_templates.md), [labels](../labels.md), and [milestones](../milestones/_index.md), to match your team's needs.
    1. Familiarize your team with the GitLab interface and any new workflows or processes introduced by the migration.
 1. Decommission your Jira instance:
    1. When you're satisfied with the migration, you can decommission your Jira instance and fully transition to GitLab.
diff --git a/doc/user/project/issue_board.md b/doc/user/project/issue_board.md
index 2aa7f0559e7af02a7c350002b54e41b9192c8e7c..54d2bd50e0ce5e2f46c95090c267ae7ed2c009d9 100644
--- a/doc/user/project/issue_board.md
+++ b/doc/user/project/issue_board.md
@@ -227,7 +227,7 @@ DETAILS:
 **Tier:** Premium, Ultimate
 **Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated
 
-An issue board can be associated with a [milestone](milestones/index.md),
+An issue board can be associated with a [milestone](milestones/_index.md),
 [labels](labels.md), assignee, weight, and current [iteration](../group/iterations/_index.md),
 which automatically filter the board issues accordingly.
 This allows you to create unique boards according to your team's need.
diff --git a/doc/user/project/issues/create_issues.md b/doc/user/project/issues/create_issues.md
index 36a1c7de17d21c7a8f32e44523300af5133ec8eb..37ff1b974226b9c7e2799384cc146cdee14b3160 100644
--- a/doc/user/project/issues/create_issues.md
+++ b/doc/user/project/issues/create_issues.md
@@ -213,6 +213,6 @@ When you're creating a new issue, you can complete the following fields:
 - [Weight](issue_weight.md)
 - [Epic](../../group/epics/_index.md)
 - [Due date](due_dates.md)
-- [Milestone](../milestones/index.md)
+- [Milestone](../milestones/_index.md)
 - [Labels](../labels.md)
 - [Iteration](../../group/iterations/_index.md)
diff --git a/doc/user/project/issues/issue_weight.md b/doc/user/project/issues/issue_weight.md
index 733d70820b03b30ced8b42ea9d95cae1fcd2e189..e8d4adf560f0d2884472e3b069803f83b3162e41 100644
--- a/doc/user/project/issues/issue_weight.md
+++ b/doc/user/project/issues/issue_weight.md
@@ -23,7 +23,7 @@ You can view the issue weight on:
 - The right sidebar of each issue.
 - The issues page, next to a weight icon (**{weight}**).
 - [Issue boards](../issue_board.md), next to a weight icon (**{weight}**).
-- The [milestone](../milestones/index.md) page, as a total sum of issue weights.
+- The [milestone](../milestones/_index.md) page, as a total sum of issue weights.
 
 ## Set the issue weight
 
diff --git a/doc/user/project/issues/managing_issues.md b/doc/user/project/issues/managing_issues.md
index a4b57b40c0181d981872bf92ad6376e187ed6dcb..1624026acc251fa903c21f0a542a08f3327c0965 100644
--- a/doc/user/project/issues/managing_issues.md
+++ b/doc/user/project/issues/managing_issues.md
@@ -88,7 +88,7 @@ When bulk editing issues in a project, you can edit the following attributes:
 - Status (open or closed)
 - [Assignees](managing_issues.md#assignees)
 - [Epic](../../group/epics/_index.md)
-- [Milestone](../milestones/index.md)
+- [Milestone](../milestones/_index.md)
 - [Labels](../labels.md)
 - [Health status](#health-status)
 - [Notification](../../profile/notifications.md) subscription
@@ -121,7 +121,7 @@ To edit multiple issues at the same time:
 When bulk editing issues in a group, you can edit the following attributes:
 
 - [Epic](../../group/epics/_index.md)
-- [Milestone](../milestones/index.md)
+- [Milestone](../milestones/_index.md)
 - [Iteration](../../group/iterations/_index.md)
 - [Labels](../labels.md)
 - [Health status](#health-status)
diff --git a/doc/user/project/members/index.md b/doc/user/project/members/_index.md
similarity index 100%
rename from doc/user/project/members/index.md
rename to doc/user/project/members/_index.md
diff --git a/doc/user/project/merge_requests/commits.md b/doc/user/project/merge_requests/commits.md
index f8e6fcd3a00ba2cc2fbdf3b9982a7c4d805c7e53..6052427b7899753e5b1626cbcf3be06b11f5596d 100644
--- a/doc/user/project/merge_requests/commits.md
+++ b/doc/user/project/merge_requests/commits.md
@@ -10,7 +10,7 @@ DETAILS:
 **Tier:** Free, Premium, Ultimate
 **Offering:** GitLab.com, GitLab Self-Managed, GitLab Dedicated
 
-A commit records and sends the source code changes to the [repository](../repository/index.md).
+A commit records and sends the source code changes to the [repository](../repository/_index.md).
 For more information, see [Recording Changes to the Repository](https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository).
 
 ## Commit changes using the command line
diff --git a/doc/user/project/milestones/index.md b/doc/user/project/milestones/_index.md
similarity index 100%
rename from doc/user/project/milestones/index.md
rename to doc/user/project/milestones/_index.md
diff --git a/doc/user/project/milestones/burndown_and_burnup_charts.md b/doc/user/project/milestones/burndown_and_burnup_charts.md
index db04d5ed9870d04b2bf986ccb7d993916d9823f0..9bbd48769a60a2237668c3e9247f2fda4054b5f1 100644
--- a/doc/user/project/milestones/burndown_and_burnup_charts.md
+++ b/doc/user/project/milestones/burndown_and_burnup_charts.md
@@ -44,7 +44,7 @@ To view a group's burndown chart:
 
 Burndown charts are generally used for tracking and analyzing the completion of
 a milestone. Therefore, their use cases are tied to the
-[use you are assigning your milestone to](index.md).
+[use you are assigning your milestone to](_index.md).
 
 For example, suppose you lead a team of developers in a large company,
 and you follow this workflow:
@@ -66,7 +66,7 @@ A burndown chart is available for every project or group milestone that has been
 date** and a **due date**.
 
 NOTE:
-You're able to [promote project](index.md#promote-a-project-milestone-to-a-group-milestone) to group milestones and still see the **burndown chart** for them, respecting license limitations.
+You're able to [promote project](_index.md#promote-a-project-milestone-to-a-group-milestone) to group milestones and still see the **burndown chart** for them, respecting license limitations.
 
 The chart indicates the project's progress throughout that milestone (for issues assigned to it).
 
diff --git a/doc/user/project/ml/_index.md b/doc/user/project/ml/_index.md
index afac0c3fe07da8d683dd17bb4c0196e233497820..dd65ba94dbde7e854c9af9da15bdd501e2d8f4f5 100644
--- a/doc/user/project/ml/_index.md
+++ b/doc/user/project/ml/_index.md
@@ -13,7 +13,7 @@ DETAILS:
 
 If you're a data scientist or developer, you can use the model registry to manage your machine learning
 models, along with all metadata associated with their creation: parameters, performance
-metrics, artifacts, logs, and more. For more information, see the [model registry documentation](model_registry/index.md).
+metrics, artifacts, logs, and more. For more information, see the [model registry documentation](model_registry/_index.md).
 
 ## Model experiments
 
@@ -22,7 +22,7 @@ engineering to improve the performance of the model. Keeping track of all this m
 artifacts so that you can later replicate the experiment is not trivial. With machine learning experiment
 tracking, you can log parameters, metrics, and artifacts directly into GitLab, which provides easy access to these things later on.
 
-For details, see the [model experiments documentation](experiment_tracking/index.md).
+For details, see the [model experiments documentation](experiment_tracking/_index.md).
 
 ## GitLab MLOps Python client
 
diff --git a/doc/user/project/ml/experiment_tracking/index.md b/doc/user/project/ml/experiment_tracking/_index.md
similarity index 100%
rename from doc/user/project/ml/experiment_tracking/index.md
rename to doc/user/project/ml/experiment_tracking/_index.md
diff --git a/doc/user/project/ml/experiment_tracking/mlflow_client.md b/doc/user/project/ml/experiment_tracking/mlflow_client.md
index cae7eddd7b300f441f9b7d0070a9fdf24229468c..477a492f09d35b20d2f8c8feb811d9638f3f5043 100644
--- a/doc/user/project/ml/experiment_tracking/mlflow_client.md
+++ b/doc/user/project/ml/experiment_tracking/mlflow_client.md
@@ -13,8 +13,8 @@ DETAILS:
 > - [Generally available](https://gitlab.com/groups/gitlab-org/-/epics/9341) in GitLab 17.8.
 
 [MLflow](https://mlflow.org/) is a popular open source tool for Machine Learning experiment tracking.
-GitLab [Model experiment tracking](index.md) and GitLab
-[Model registry](../model_registry/index.md) are compatible with the MLflow client. The setup requires minimal changes to existing code.
+GitLab [Model experiment tracking](_index.md) and GitLab
+[Model registry](../model_registry/_index.md) are compatible with the MLflow client. The setup requires minimal changes to existing code.
 
 GitLab plays the role of a MLflow server. Running `mlflow server` is not necessary.
 
diff --git a/doc/user/project/ml/model_registry/index.md b/doc/user/project/ml/model_registry/_index.md
similarity index 100%
rename from doc/user/project/ml/model_registry/index.md
rename to doc/user/project/ml/model_registry/_index.md
diff --git a/doc/user/project/pages/index.md b/doc/user/project/pages/index.md
index 31a782b174a873096a98f191bdae3e2088d97e2f..92de4d5b3e0b62e4f2090b5c7c8c04abf595b883 100644
--- a/doc/user/project/pages/index.md
+++ b/doc/user/project/pages/index.md
@@ -73,7 +73,7 @@ To use GitLab Pages, you must create a project in GitLab to upload your website'
 files to. These projects can be either public, internal, or private.
 
 GitLab always deploys your website from a specific folder called `public` in your
-repository. When you create a new project in GitLab, a [repository](../repository/index.md)
+repository. When you create a new project in GitLab, a [repository](../repository/_index.md)
 becomes available automatically.
 
 To deploy your site, GitLab uses its built-in tool called [GitLab CI/CD](../../../ci/_index.md)
diff --git a/doc/user/project/releases/index.md b/doc/user/project/releases/index.md
index 154e92bfe4939b91c9207f2816afe2f0e8d94f53..5f5ee46da8ed351b7f6965dbc06bfc7289652dd3 100644
--- a/doc/user/project/releases/index.md
+++ b/doc/user/project/releases/index.md
@@ -266,9 +266,9 @@ In the UI:
 
 ## Associate milestones with a release
 
-You can associate a release with one or more [project milestones](../milestones/index.md#project-milestones-and-group-milestones).
+You can associate a release with one or more [project milestones](../milestones/_index.md#project-milestones-and-group-milestones).
 
-[GitLab Premium](https://about.gitlab.com/pricing/) customers can specify [group milestones](../milestones/index.md#project-milestones-and-group-milestones) to associate with a release.
+[GitLab Premium](https://about.gitlab.com/pricing/) customers can specify [group milestones](../milestones/_index.md#project-milestones-and-group-milestones) to associate with a release.
 
 You can do this in the user interface, or by including a `milestones` array in your request to
 the [Releases API](../../../api/releases/_index.md#create-a-release).
diff --git a/doc/user/project/releases/release_fields.md b/doc/user/project/releases/release_fields.md
index 5ea75c2409efe08e18008b3cc6a8d6126aad3cf3..26d2b83a9ca07ec1cc92f316e41ea051aadb3969 100644
--- a/doc/user/project/releases/release_fields.md
+++ b/doc/user/project/releases/release_fields.md
@@ -50,7 +50,7 @@ A release contains the following types of assets:
 
 GitLab automatically generates `zip`, `tar.gz`, `tar.bz2`, and `tar`
 archived source code from the given Git tag. These assets are read-only,
-and [can be downloaded](../repository/index.md#download-repository-source-code).
+and [can be downloaded](../repository/_index.md#download-repository-source-code).
 
 ### Links
 
diff --git a/doc/user/project/repository/index.md b/doc/user/project/repository/_index.md
similarity index 100%
rename from doc/user/project/repository/index.md
rename to doc/user/project/repository/_index.md
diff --git a/doc/user/project/repository/files/git_attributes.md b/doc/user/project/repository/files/git_attributes.md
index 14ac663ff0a87e0c73263c0f34d4df85600579b9..5a404f56981106dd6ead93c95e6d8756d01139b6 100644
--- a/doc/user/project/repository/files/git_attributes.md
+++ b/doc/user/project/repository/files/git_attributes.md
@@ -19,7 +19,7 @@ to file handling and display, such as:
 - Create [exclusive lock files](../../file_lock.md) to mark files as read-only.
 - Change [syntax highlighting](highlighting.md) in diffs.
 - Declare binary file handling with [Git LFS](../../../../topics/git/lfs/_index.md).
-- Declare [languages used in your repository](../index.md#add-repository-languages).
+- Declare [languages used in your repository](../_index.md#add-repository-languages).
 
 ## Encoding requirements
 
diff --git a/doc/user/project/settings/import_export.md b/doc/user/project/settings/import_export.md
index 5af697292913913b1b9364ca1a9f44b1130f3fae..e078c65f539407e16ae86d9baa1d6266b40ed51d 100644
--- a/doc/user/project/settings/import_export.md
+++ b/doc/user/project/settings/import_export.md
@@ -58,7 +58,7 @@ To ensure GitLab maps users and their contributions correctly:
   public emails by [editing project export files](#edit-project-export-files).
 
 When the email of an existing user matches the email of an imported user, that user is added as a
-[direct member](../members/index.md) to the imported project.
+[direct member](../members/_index.md) to the imported project.
 
 If any of the previous conditions are not met, user contributions are not mapped correctly. Instead, all GitLab user
 associations are changed to the user who performed the import. That user becomes an author of merge requests created by
diff --git a/doc/user/project/settings/migrate_projects.md b/doc/user/project/settings/migrate_projects.md
index e6edc0b01568948bb1f440004576d1009ab62a68..b6aba3dd060d34a6efe65678aa80d96f4115b3fb 100644
--- a/doc/user/project/settings/migrate_projects.md
+++ b/doc/user/project/settings/migrate_projects.md
@@ -31,7 +31,7 @@ A project transfer includes:
    unless they are also members of the target group. The project inherits
    new member permissions from the group you transfer it to.
 
-The project's [path also changes](../repository/index.md#repository-path-changes), so make sure to update the URLs to the project components where necessary.
+The project's [path also changes](../repository/_index.md#repository-path-changes), so make sure to update the URLs to the project components where necessary.
 
 New project-level labels are created for issues and merge requests if matching group labels don't already exist in the target namespace.
 
@@ -64,7 +64,7 @@ To transfer a project:
 1. Select **Transfer project**.
 1. Enter the project's name and select **Confirm**.
 
-You are redirected to the project's new page and GitLab applies a redirect. For more information about repository redirects, see [What happens when a repository path changes](../repository/index.md#repository-path-changes).
+You are redirected to the project's new page and GitLab applies a redirect. For more information about repository redirects, see [What happens when a repository path changes](../repository/_index.md#repository-path-changes).
 
 NOTE:
 If you are an administrator, you can also use the [administration interface](../../../administration/admin_area.md#administering-projects)
diff --git a/doc/user/project/working_with_projects.md b/doc/user/project/working_with_projects.md
index 8b55fa927c522fdbfdf2eae083473b4ceebe3064..086c57be59a5bead3efd8ae01353567f459e3a30 100644
--- a/doc/user/project/working_with_projects.md
+++ b/doc/user/project/working_with_projects.md
@@ -479,7 +479,7 @@ Prerequisites:
 
 NOTE:
 When you change the repository path, users may experience issues if they push to, or pull from, the old URL. For more information, see
-[redirects when renaming repositories](repository/index.md#repository-path-changes).
+[redirects when renaming repositories](repository/_index.md#repository-path-changes).
 
 To rename a repository:
 
@@ -502,7 +502,7 @@ When you leave a project:
 Prerequisites:
 
 - You can leave a project this way only when a project is part of a group under a [group namespace](../namespace/_index.md).
-- You must be a [direct member](members/index.md#membership-types) of the project.
+- You must be a [direct member](members/_index.md#membership-types) of the project.
 
 To leave a project:
 
diff --git a/doc/user/shortcuts.md b/doc/user/shortcuts.md
index 538f19cae9c516b4a208dd96ade3b7c80abb513d..a600f2af2e09a6f4785ea210be01e5bf0eb94d7b 100644
--- a/doc/user/shortcuts.md
+++ b/doc/user/shortcuts.md
@@ -142,7 +142,7 @@ These shortcuts are available when browsing the files in a project (go to
 
 ### Repository graph
 
-These shortcuts are available when viewing the project [repository graph](project/repository/index.md#repository-history-graph)
+These shortcuts are available when viewing the project [repository graph](project/repository/_index.md#repository-history-graph)
 page (go to **Code > Repository graph**):
 
 | Keyboard shortcut                                                  | Description |
diff --git a/doc/user/tasks.md b/doc/user/tasks.md
index a195f311e04d5759605238460bcd13e0f5a857b5..c2956f51f598b41716861eeb47a83cebdc9e78d7 100644
--- a/doc/user/tasks.md
+++ b/doc/user/tasks.md
@@ -341,7 +341,7 @@ To set a start date:
 > - [Generally available](https://gitlab.com/gitlab-org/gitlab/-/issues/367463) in GitLab 15.7. Feature flag `work_items_mvc` removed.
 > - [Changed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/169256) the minimum user role from Reporter to Planner in GitLab 17.7.
 
-You can add a task to a [milestone](project/milestones/index.md).
+You can add a task to a [milestone](project/milestones/_index.md).
 You can see the milestone title when you view a task.
 If you create a task for an issue that already belongs to a milestone,
 the new task inherits the milestone.
diff --git a/doc/user/workspace/set_up_gitlab_agent_and_proxies.md b/doc/user/workspace/set_up_gitlab_agent_and_proxies.md
index 759913f31d94a054f8c796d4d19683ffb7a5dc65..193bdf97fa37a703fde7f2e1da45faeca5ca593f 100644
--- a/doc/user/workspace/set_up_gitlab_agent_and_proxies.md
+++ b/doc/user/workspace/set_up_gitlab_agent_and_proxies.md
@@ -85,7 +85,7 @@ To allow your GitLab agent in a group and its subgroups:
 Grant users with at least the Developer role for the workspace and agent projects
 the necessary permissions to create and manage workspaces. You can:
 
-- [Add users to a project](../project/members/index.md#add-users-to-a-project)
+- [Add users to a project](../project/members/_index.md#add-users-to-a-project)
 - [Add users to a group](../group/_index.md#add-users-to-a-group)
 
 ## Generate TLS certificates
diff --git a/ee/spec/fixtures/vertex_embeddings b/ee/spec/fixtures/vertex_embeddings
index 9d68fdcbec36a5707b69ef50529ec9e9cd224c7a..88d376f4734c15ae881842f429413a907bc7178f 100644
--- a/ee/spec/fixtures/vertex_embeddings
+++ b/ee/spec/fixtures/vertex_embeddings
@@ -1,5 +1,5 @@
 1841447	2023-09-19 15:14:20.660057+00	2023-09-19 15:14:20.660057+00	1	[-0.0048129912,-0.019466622,0.032494497,0.006915436,0.048907757,-0.0626041,0.0028026921,0.012833146,-0.015534894,-0.027536297,0.024056705,0.03894733,0.018269671,0.00037046452,0.022050727,-0.029925045,-0.063980095,-0.013552902,-0.012208804,0.016667966,-0.079624444,0.02815279,-0.01387998,-0.0245285,0.0154325105,-0.056804553,-0.010719994,0.011227441,-0.0426453,0.0188157,0.02793452,0.025659384,-0.041533764,-0.01622694,-0.00020850993,0.024046596,-0.04873177,0.09046534,-0.0044668224,0.061057877,-0.0045089414,-0.03313316,0.0279439,0.002761411,0.0012453191,-0.006172308,-0.030549007,0.03479985,0.019958837,-0.06354617,-0.039428137,0.01056836,-0.003320806,0.003292531,-0.007397305,0.042281087,-0.024146266,0.0042960146,-0.028235583,-0.036859084,-0.025181683,-0.043603536,0.07242824,-0.055810355,0.087571636,0.015298996,0.016751247,-0.03327363,-0.028298194,-0.024587326,0.060451277,0.03857956,-0.041316155,0.001551126,0.030689294,-0.0029618663,-0.02585788,0.042694837,0.035205614,-0.029799845,-0.00026274743,-0.042227734,-0.029122405,-0.09475661,-0.041559167,0.061489243,0.02353026,-0.006910692,-0.0045342795,0.003230777,-0.013799105,0.005299164,0.041039567,0.055826038,-0.0631619,0.0036205726,-0.026885564,0.036329426,0.003297872,0.049376003,-0.005150467,-0.014779215,0.025956227,0.025648108,0.04303947,0.013376167,-0.0050272876,0.019282693,-0.04222696,-0.06856122,-0.08469972,-0.0069787875,-0.07107558,0.041193724,0.00088045496,-0.01893539,0.038162477,-0.01817652,0.046292298,0.035580315,-0.034540035,0.04741348,0.04382151,0.053097162,0.014192985,0.026768478,0.023970261,0.013082548,0.020152586,-0.011572798,0.04906004,-0.01132452,0.05240811,-0.008275935,0.050346345,0.025766777,-0.009561892,0.018234218,0.034029443,0.04089353,-0.006200181,0.03513207,-0.0014068206,0.008073462,-0.010121162,-0.060433183,0.051414426,-0.043125175,-0.0685023,-0.0176216,0.019903742,-0.004552075,-0.009153818,0.016011605,0.019447086,0.055492915,0.051765155,0.022619547,0.008073671,-0.09868036,-0.012905011,-0.04704797,-0.047725923,-0.004962618,0.05098672,0.02707903,7.374347e-05,-0.008047102,0.0071844785,0.011095899,0.017856596,-0.11791224,-0.002009559,-0.035592344,0.057976525,0.033587914,0.013620298,0.011018445,0.0473903,-0.019447127,0.0025638575,-0.029877536,0.009629835,0.022447638,-0.021805815,0.041822866,0.0091254115,-0.011205584,-0.016432736,0.06799946,-0.032241628,0.04093836,0.041563183,-0.08583412,-0.038992673,-0.022963898,0.09815893,-0.16879775,-0.041725144,-0.0032134273,-0.034658074,-0.03775873,-0.04267414,0.0030189925,0.016702654,-0.0020581775,-0.05496214,-0.018705508,0.023558384,0.06142941,-0.013706151,0.01661006,0.044962008,-0.026439013,0.016845921,-0.07567373,-0.009620138,-0.09202053,-0.07219405,0.032764886,-0.010685432,-0.00078036025,0.024116358,0.021213142,0.007014877,0.028223153,0.020770209,0.014548652,-0.0088043185,0.013160575,0.0069137914,0.035384104,-0.04372582,-0.0030256447,-0.03532474,0.052012566,0.0154655,0.0035073166,-0.08404256,0.05265666,-0.0196147,0.09514382,-0.0005992615,0.009895417,-0.0071444944,0.046813026,-0.02119818,0.026091697,0.01999067,-0.028537508,0.0494555,-0.022171568,-0.050853945,0.0101830745,0.043174695,-0.007944547,-0.009455801,0.05701332,-0.015735228,0.028724087,-0.015270918,0.05263713,-0.019071389,0.16282028,0.0007444398,-0.05529233,-0.034122445,-0.008396515,0.057628755,-0.018449882,-0.014121799,-0.0004039846,0.021692926,0.025597993,-0.04310303,0.02572733,-0.03193343,0.0501756,0.049470127,0.031587306,0.0036216131,-0.02889181,-0.04388995,0.025471637,0.009108847,0.019976988,0.029228287,-0.003913351,-0.056804925,0.027892374,0.029939363,0.008552248,0.015797095,0.06012756,-0.012387463,-0.046593893,0.011752089,0.007299907,-0.04556096,0.058166083,-0.0045850966,-0.013399254,-0.009107824,-0.042705663,-0.06951592,-0.033744033,9.256055e-05,0.030984398,0.051808644,0.0014241784,0.0020219777,-0.0152080245,0.009440508,0.017359031,-0.04062156,-0.01666146,-0.0044049397,-0.009980132,-0.01530812,0.0047920034,-0.016985957,-0.0032158948,0.09078263,-0.0143742375,0.011220495,-0.021181453,-0.010884579,-0.011049543,0.06445209,-0.025669636,-0.06092514,-0.013329077,-0.03919156,-0.0007195924,-0.00084652146,0.015819546,0.05368131,-0.0098625,-0.0148361055,-0.051237267,0.007881445,-0.026240868,-0.01107903,0.004734657,-0.01834711,-0.019309685,-0.040983215,-0.03812318,-0.02874244,0.003526389,0.015363951,-0.0025019953,-0.05174076,0.0697674,0.0019473379,0.009602512,-0.01456375,0.01709759,0.020951947,0.03676924,-0.049565084,-0.003415256,-0.069125764,0.0028668654,0.011228936,0.02682785,-0.04481384,0.062534265,0.04020814,-0.006646521,-0.046481878,0.045361444,0.032057825,-0.040272072,-0.04229346,-0.042139888,-0.009365724,-0.014206409,-0.023764443,0.0013621792,-0.036490723,-0.0076025273,-0.016648842,0.016364746,-0.005085859,-0.0010254035,0.023222094,0.029343313,-0.010414169,-0.04956016,-0.013755155,0.051562544,0.037760988,-0.009570387,0.020883659,0.036031675,-0.029930783,-0.04476063,-0.034346633,-0.059852846,0.03275109,-0.0045849537,-0.04015921,-0.07370915,0.02143726,0.029129684,-0.02010492,0.030000597,-0.0064644315,-0.050804578,-0.048702434,0.02240325,0.027902376,0.008698655,0.03294643,-0.0772522,0.0021246858,0.0006559472,-0.029709842,0.0061664437,0.035706922,-0.029017312,-0.0767947,0.015699657,0.0005840492,-0.0023755156,-0.020549864,-0.0030404045,-0.050315294,-0.009313765,0.030937525,-0.026441433,0.0449766,-0.043818116,0.00783083,-0.0431428,0.15191346,0.07011927,0.03479807,0.0025662275,-0.020418402,-0.005110319,-0.011647658,0.0035820142,-0.0070034806,-0.03938284,0.007896461,-0.04539904,0.018202545,-0.0088825375,-0.055711582,-0.017972494,0.055331063,0.11389658,-0.013621346,0.017109739,-0.003849101,0.011049201,-0.02748529,0.023535166,-0.031109938,-0.025663696,-0.027054219,0.04708373,-0.04153528,-0.01593626,0.04310935,0.07311865,-0.002286619,0.03197274,-0.016541764,0.10123453,-0.04371233,-0.02015795,0.0492274,-0.0114405975,0.021930352,0.034343682,-0.0053304844,0.008762181,-0.03235681,-0.005938143,-0.03534663,-0.015632534,-0.015235221,-0.011329676,-0.0043189516,0.013808674,-0.027392564,-0.03401644,0.033790704,-0.046973966,-0.017102744,-0.010376632,-0.021644192,-0.04288897,0.002446571,-0.0005463007,0.022880182,0.024603266,0.0055537266,0.0089080855,-0.0010745022,-0.033819154,-0.06255205,0.006285103,-0.01696978,-0.008783503,-0.053333256,0.040537644,0.043425966,-0.016982215,-0.029263407,-0.031770036,-0.015530444,-0.054630157,-0.043556973,0.038691334,0.00039258713,0.008554526,0.017765265,-0.0143609,-0.008853887,-0.0045380252,0.045851685,0.0907863,0.043230835,-0.02003699,-0.060610764,0.03861734,0.014631006,0.04149072,-0.031926237,-0.03654511,0.0018078008,-0.053724743,0.04534586,0.015788151,0.017594438,0.114421874,0.02009973,-0.012774909,0.06500137,-0.010437879,-0.029163292,0.030567603,0.0029752743,0.036539193,-0.010471567,0.029779227,0.043812506,-0.003922524,-0.033584885,0.055268526,0.018682003,-0.03842304,0.023769658,-0.021432135,-0.05819193,-0.03930988,-0.0041942266,0.031161875,-0.0113113895,-0.0031637952,0.05417315,-0.07979591,0.017416624,0.020205488,0.026057815,0.03243851,0.000934009,-0.014530245,-0.020059377,-0.0066781887,0.008508951,0.008084753,-0.02881987,0.063900426,0.013847543,0.051627427,-0.050292898,0.040524982,0.028759113,0.007482412,-0.048176315,-0.037639003,0.007870956,-0.062459506,-0.0034438944,-0.008660484,-0.038939696,-0.07131033,0.01235523,-0.021094212,-0.016496383,-0.030654157,-0.021980302,0.022465615,-0.0057306103,-0.004954618,-0.007999707,-0.014733778,0.051130287,-0.023480108,-0.0017670087,-0.029601762,0.006521562,-0.021996774,0.0054509724,0.009537898,0.04474791,0.030226272,0.008827464,0.014021143,-0.0014856923,-0.0145424865,0.004631907,0.037729,-0.043806642,-0.010183519,0.039228264,0.034578763,-0.010530565,-0.043943785,0.053362828,-0.034514617,0.025715359,0.013253639,-0.026532015,-0.031430364,0.019122588,-0.0713516,-0.017783996,-0.03929805,0.030012805,0.009734439,0.0027342336,-0.025838152,0.026899997,-0.0073075136,-0.01662071,0.02004291,0.030947134,0.044978537,-0.018240293,0.0172892,0.0042854887,-0.0012706982,0.013853104,0.013936953,0.00033952406,-0.007896285,-0.02329157,0.023095278,0.02138548,-0.084248334,-0.011673728,-0.0064286287,-0.026043534,0.02018256,0.016405549,0.01718386,0.008568812,0.034050073,-0.05308711,0.043166723,0.02105899,-0.0054087234,-0.0019364821,-0.0073212823,-0.09083134,0.017330281,0.016428232,-0.02242632,-0.006111824,-0.027252154,0.005193078,0.01705636,0.05001947,0.003051191,-0.04518141,0.007421158,0.004885125,-0.015022341,0.061384697,-0.0477884,0.001585895,-0.021378152,-0.015078858,-0.04726572,-0.0135954805,0.051935285,-0.060215324,0.029441731,0.0039752875,-0.04527957,-0.059299987,-0.004221475,0.00239692,-0.018810358,0.05275816,0.015851405,0.057174902,0.040634707,0.036065917,-0.04598131,-0.03176407,0.012282772,0.004820455,-0.052378487,0.0012858905,0.004880355,0.05314493,-0.006644703,0.016759308,0.03975263,-0.052106537,0.031189762,0.022553116,0.028036997,-0.032969717,0.013821326,-0.019691577,-0.038311195,-0.02835533,-0.014254936,-0.033844944,0.02638977,0.00653496,0.049070492,0.014199834,-0.011089875,0.059674807,0.016650535,0.008573322,-0.0006925993,0.056077242,0.000810881,0.050721638,0.015769461,-0.005128583,0.038978223,-0.02707928,0.0023843974,0.00011553894,-0.011670671,-0.01040023,-0.03394471,0.032619044,-0.036503367,-0.07395908,0.032577623,-0.01998371,-0.020045329,0.03544179,0.05510847,0.011022606,0.060204413,-0.00425795,0.0208618,-0.052808054,-0.015183764,-0.02058533,0.009117932,0.01494935,0.013962219,-0.01611136,-0.04968876]	http://localhost:3001/help/user/project/repository/forking_workflow	# Project forking workflow **(FREE ALL)**\\n\\nWhenever possible, it's recommended to work in a common Git repository and use\\nbranching strategies to manage your work. However,\\nif you do not have write access for the repository you want to contribute to, you\\ncan create a fork.\\n\\nA fork is a personal copy of the repository and all its branches, which you create\\nin a namespace of your choice. Make changes in your own fork and\\nsubmit them through a merge request to the repository you don't have access to.\\n\\n## Create a fork\\n\\n> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/15013) a new form in GitLab 13.11 [with a flag](../../../user/feature_flags.md) named `fork_project_form`. Disabled by default.\\n> - [Enabled on GitLab.com and self-managed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/77181) in GitLab 14.8. Feature flag `fork_project_form` removed.\\n\\nTo fork an existing project in GitLab:\\n\\n1. On the project's homepage, in the upper-right corner, select **Fork** (**{fork}**):\\n   ![Fork this project](img/forking_workflow_fork_button_v13_10.png)\\n1. Optional. Edit the **Project name**.\\n1. For **Project URL**, select the [namespace](../../namespace/index.md)\\n   your fork should belong to.\\n1. Add a **Project slug**. This value becomes part of the URL to your fork.\\n   It must be unique in the namespace.\\n1. Optional. Add a **Project description**.\\n1. Select the **Visibility level** for your fork. For more information about	{"info": "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments", "group": "Source Code", "stage": "Create", "title": "Project forking workflow", "source": "/doc/user/project/repository/forking_workflow.md", "source_type": "doc"}
-1845158	2023-09-19 15:14:31.384173+00	2023-09-19 15:14:31.384173+00	1	[-0.018216625,-0.021992933,0.02677976,0.004270652,0.043820746,-0.045654044,0.018518092,0.02646409,0.005913688,0.03150768,0.02571013,0.0431024,0.052603524,-0.008386439,-0.008438408,-0.003033176,-0.079457164,-0.039995465,0.006009711,0.0054634223,-0.09697351,-0.009995415,-0.018390473,-0.001830463,0.009867985,-0.076623395,-0.0036434678,0.011707033,-0.024745638,0.022376023,0.04186702,0.020140441,-0.03977035,-0.0028707478,0.001226149,-0.007068186,-0.031281013,0.05135731,-0.021723956,0.027699945,0.036424343,-0.0064942944,0.032663822,0.028299244,0.008333455,-0.023396542,-0.041502096,0.014348426,-0.035472836,-0.056858383,-0.05151179,-0.02882019,-0.018723259,0.01807717,-0.032426864,0.035049606,-0.03140334,-0.02450383,-0.037973173,-0.0031534722,-0.019709166,-0.05703406,0.041562356,-0.032093253,0.04250074,-0.0013237312,0.040238854,-0.017384026,-0.04010435,-0.027211472,0.042404205,0.031056333,-0.03143826,-0.026360508,-0.0021553577,-0.0011489555,-0.061376385,0.03630811,0.01752671,-0.03891008,-0.009738006,-0.02510016,-0.033424266,-0.10985664,-0.06933286,0.08841966,-0.002716271,0.023390992,-0.016110899,0.04997498,-0.03663504,0.010310452,-0.020320047,0.020703023,-0.052786935,0.021951176,0.003322747,0.015403213,0.009903382,0.035331454,-0.010879851,-0.022673264,0.051682398,0.019598125,0.04086898,0.016842023,-0.029746924,-0.0066556,-0.059619673,-0.102453165,-0.10149043,-0.0073507656,-0.091189824,0.060333993,-0.016634144,-0.037629146,0.025433015,-0.022521248,0.028640147,0.018815178,-0.05807291,0.04312729,0.024279358,-0.0003638775,-0.03241109,0.043679424,-0.0087886825,0.032475546,0.013604338,-0.03128194,0.061907757,-0.015891012,0.07278607,-0.0030882577,0.0262554,0.04164585,-0.01217153,0.042494226,0.046455856,0.0276577,-0.03825405,0.013110028,0.0010490722,-0.014809772,-0.014556551,-0.1011372,0.040175542,-0.046736162,-0.037408862,-0.003108904,0.043949988,-0.005193056,-0.03745613,0.047509633,0.03636503,0.0311914,0.070054166,0.010369525,0.046029914,-0.055235207,0.0125895925,-0.025896722,-0.02778954,-0.014574004,0.07002436,0.046639808,0.009611999,-0.0031514226,-0.0029139912,0.0066724024,0.0056122257,-0.13986586,0.015797146,-0.06550711,0.040192705,0.0054050153,-0.006041187,-0.002744037,0.027680414,-0.01717878,-0.0019511058,-0.02470942,-0.00028743682,0.03236084,-0.03922094,0.0043871887,0.006889236,-0.035731867,-0.00037300945,0.05574634,-0.06631903,0.022324277,0.054386325,-0.05856234,-0.038497146,0.020292567,0.068702064,-0.1533165,-0.05195847,0.029417675,0.03576613,-0.017671578,-0.008369567,0.030751897,0.0015565852,-0.001881328,-0.092181906,0.02494289,0.03309851,0.019009314,0.027566673,0.0057506426,0.019691495,0.005096437,-0.008758058,-0.054626275,-0.0070995926,-0.069044515,-0.061408173,0.007971756,-0.0021814387,-0.014529819,0.04039577,0.007087294,-0.0029525012,-0.008527706,-0.004470307,0.005834377,-0.020867018,-0.0010624175,-0.011497835,0.0066582267,-0.026125634,0.01370637,-0.04012622,0.05203758,0.02421192,0.046896894,-0.0598884,0.05277744,-0.019797595,0.088693894,0.004801014,-0.014886764,-0.0007251437,0.016554287,0.0051345467,0.024804963,0.012162376,-0.03063207,0.039749984,-0.042074826,-0.034170136,0.015468091,0.04623719,-0.017839795,-0.042607766,0.050848503,0.0068590157,0.060243435,0.007653377,0.04432894,0.005879329,0.12359756,0.02537984,-0.017554108,-0.08574852,0.017274687,0.041740056,-0.020608213,-0.003856001,0.015719512,0.036207907,0.043252245,-0.027178086,0.009293967,-0.029998707,0.047635105,0.06205866,0.016686628,0.007271678,-0.043381985,3.8053713e-05,0.0131723285,-0.004268705,0.013916615,0.0008250809,-0.0008948526,-0.053370606,0.023238933,0.03654191,-0.0027710323,0.010628547,0.043814164,-0.022204759,-0.01898186,0.017438741,-0.00043040878,-0.03179555,0.047023192,0.0021062172,-0.040916294,0.02327947,-0.0037316668,-0.036983203,-0.02326565,-0.01939749,0.010643999,0.069220126,-0.004046561,-0.019777503,-0.053731322,0.02556628,0.0054717674,-0.023531232,-0.0044843117,0.011306603,-0.023118863,-0.012968873,0.057881445,-0.05267256,0.0153931035,0.082473576,-0.039221667,-0.008008247,-0.033701926,0.033307552,-0.018961407,0.045655474,0.0035987615,-0.043577835,0.003762644,-0.020357804,0.022814263,-0.03706104,0.013555311,0.056301504,-0.026436822,-0.030336866,-0.06962052,-0.006402481,-0.0445703,-0.0034843115,-0.018453326,-0.025896663,-0.014933767,-0.025398081,-0.0030740967,-0.029405646,-0.02334673,0.015142223,-0.016084889,-0.044312235,0.046125565,0.0031867356,0.0017066477,-0.010378672,0.016554968,0.046892792,0.03278493,-0.059784025,0.0058537745,-0.07006699,0.011401549,0.005087481,0.031003077,-0.015447427,0.035551574,0.018388102,-0.012081318,-0.0160953,0.013449592,0.00865619,-0.026913565,-0.05202421,-0.015503233,-0.014657708,-0.011728372,0.002704698,0.0015655865,-0.060114566,0.0347875,0.004749593,0.036881294,0.008642254,-0.020391796,0.020012975,0.0025107374,0.0044476422,-0.04926797,0.007949995,0.06546818,0.06459321,-0.022077587,0.001813845,0.027878046,-0.0126844095,-0.041422796,-0.035939027,-0.050003383,0.042014785,0.024826957,-0.027511392,-0.032028213,0.032709017,0.032831706,-0.0091262935,0.051475365,0.0084324945,-0.052261773,-0.031730328,-0.010613661,0.018424967,4.1460822e-05,0.03896768,-0.034712628,0.0048707863,-0.031472377,-0.010714202,-0.0034506223,0.036024574,-0.027212609,-0.14360546,0.01806847,0.009799488,0.008012023,-0.05135289,0.008539633,-0.056318745,0.011849498,0.010603325,-0.010865624,0.032583755,-0.07822787,-0.00046479228,-0.017388323,0.10970316,0.07472136,0.01973863,-0.021627152,-0.0025504024,0.0047038686,-0.02300811,0.010098778,-0.018077133,-0.06591332,0.013274678,-0.010712689,-0.020136619,-0.038052518,-0.040888455,-0.0048185573,0.03639189,0.090508744,-0.02478363,-0.014836298,-0.0016641791,-0.025338251,0.009102187,0.031337097,-0.018146008,-0.019614553,-0.037475042,0.079941005,0.0021983215,-0.044238884,0.041829776,0.045690946,-0.008170482,-0.006748737,-0.020691812,0.06559695,-0.037477434,-0.03013426,0.03313326,-0.0025750746,0.034783233,0.0084495945,-0.022125952,0.02655836,-0.0083471695,-0.0052202903,-0.039537355,0.00062901416,0.0059851287,0.026271876,-0.009466933,0.020764425,0.014980321,-0.019797057,0.03285324,-0.044974983,-0.0058940467,-0.013132032,0.013054039,-0.008744086,0.0022474842,-0.0066023893,0.0017747139,-0.0027531327,0.04955811,0.014076121,-0.004842421,0.0058588306,-0.069632456,0.0022806313,-0.042072166,-0.03669423,-0.0466142,-0.0041732164,0.022697333,0.0014046315,0.005500186,-0.018880498,-0.028734347,-0.09545887,-0.011736893,0.009979889,-0.0055262316,0.0023246107,0.03435156,-0.006353989,0.011900471,-0.010845987,-0.005999243,0.08023899,0.03464494,0.0023298953,-0.056914322,0.001957236,0.04596555,0.06421805,-0.028161246,-0.01493084,-0.011774942,-0.03774446,0.010615122,0.022626469,0.012579294,0.14007124,-0.009100008,-0.043778755,0.04938637,-0.024519784,-0.019745385,0.056852337,0.018785274,0.032340553,0.022345943,0.03389584,0.009412744,-0.042931896,-0.02683594,0.05158558,-0.028784744,-0.05299233,0.040859077,-0.04101954,-0.049321864,-0.008837615,-0.023207845,0.0017808576,-0.020180104,-0.0023518277,0.054327633,-0.06149841,0.065012194,0.025709957,0.005580446,0.027492471,-0.010188245,-0.036997832,-0.033100035,0.0065854057,0.019842334,-0.007876805,-0.051987536,0.06369901,-0.0075119496,0.03534054,-0.07578151,0.05273791,0.041389845,0.017615814,-0.022447933,-0.029866243,0.007936158,-0.046781898,0.0057601654,-0.038318545,-0.023922175,-0.053553984,0.023315782,-0.03285405,-0.019542633,-0.008003799,-0.017561076,-0.029689528,-0.016453857,-0.010865973,0.0044685085,-0.01198445,0.059311192,-0.02750252,-0.01174314,-0.015310063,0.015265312,-0.020909972,0.022796977,-0.001898866,0.034512326,0.015782641,0.035990655,0.049408495,-0.049157538,-0.029400442,0.004213016,0.0529095,-0.024331741,0.0044146827,0.039563723,0.016981676,0.0052378317,-0.058109555,0.06904421,-0.025809528,0.0006102204,-0.009364421,-0.009438361,-0.019185651,0.072670534,-0.06211184,-0.015839947,-0.022860847,0.012756041,-0.032965485,-0.016550845,-0.001649432,0.008370886,-0.02698965,0.0022993227,0.023108298,-0.006408885,0.037639227,-0.0002684338,-0.00034842087,-0.0052423156,0.008419942,-0.028324144,0.031725105,0.03413642,-0.03581964,-0.015545477,0.0061986796,0.01069263,-0.049929738,0.018392816,-0.009030531,-0.03015644,0.009850672,-0.0010066954,-0.0003574535,0.006662994,0.035421956,-0.037984364,0.049657002,0.024875766,-0.010703205,0.00016814753,0.0368507,-0.09852605,0.042057525,-0.00066148536,-0.014316931,0.020631053,-0.03250653,0.015612778,0.03778132,0.030013463,-0.019964922,-0.043129414,0.03129256,0.023092788,-0.027108079,0.033658806,-0.039345503,-0.014569578,0.0023564014,-0.008430694,-0.035106994,-0.025924526,0.031668305,-0.024456443,0.007348333,0.04277188,-0.028064666,-0.06138904,-0.024829423,0.0028322386,-0.022799123,0.047542084,0.01605937,0.05787388,0.060959503,0.06383913,-0.026288647,-0.05005838,0.009912144,-0.009333952,-0.06317141,-0.007949985,-0.038571063,0.058687244,-0.01867845,0.028681327,0.07513563,-0.050049406,0.021988487,0.01673,0.025304997,-0.033723593,0.0026712508,-0.0063619018,-0.041558508,-0.013793196,0.03621481,-0.035873473,0.04034256,0.015215154,0.022904783,0.00512532,0.004578007,0.031686757,0.031144772,0.008940557,-0.003997609,0.059238426,-0.00454929,0.063024275,-0.009605661,-0.025089674,0.039173312,-0.032900434,-0.004065948,0.04358961,0.023775939,-0.011601326,-0.026719982,0.007892596,-0.04068865,-0.050978754,0.058542967,-0.0397259,0.007675726,0.038932916,0.0490978,0.0234518,0.032109447,-0.010312887,0.04172466,-0.029599302,-0.008888077,-0.059125986,0.051496454,-0.0018317461,-0.015399809,-0.03471612,-0.05688957]	http://localhost:3001/help/gitlab-basics/start-using-git	1. Authenticate with GitLab by following the instructions in the [SSH documentation](../user/ssh.md).\\n1. Go to your project's landing page and select **Clone**. Copy the URL for **Clone with SSH**.\\n1. Open a terminal and go to the directory where you want to clone the files. Git automatically creates a folder with the repository name and downloads the files there.\\n1. Run this command:\\n\\n   ```shell\\n   git clone git@gitlab.com:gitlab-tests/sample-project.git\\n   ```\\n\\n1. To view the files, go to the new directory:\\n\\n   ```shell\\n   cd sample-project\\n   ```\\n\\nYou can also\\n[clone a repository and open it directly in Visual Studio Code](../user/project/repository/index.md#clone-and-open-in-visual-studio-code).\\n\\n### Clone with HTTPS\\n\\nClone with HTTPS when you want to authenticate each time you perform an operation\\nbetween your computer and GitLab.\\n\\n1. Go to your project's landing page and select **Clone**. Copy the URL for **Clone with HTTPS**.\\n1. Open a terminal and go to the directory where you want to clone the files.\\n1. Run the following command. Git automatically creates a folder with the repository name and downloads the files there.\\n\\n   ```shell\\n   git clone https://gitlab.com/gitlab-tests/sample-project.git\\n   ```\\n\\n1. GitLab requests your username and password.\\n\\n   If you have enabled two-factor authentication (2FA) on your account, you cannot use your account password. Instead, you can do one of the following:\\n	{"info": "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments", "type": "howto, tutorial", "group": "Source Code", "stage": "Create", "title": "Command line Git", "source": "/doc/gitlab-basics/start-using-git.md", "description": "Introduction to using Git through the command line.", "source_type": "doc"}
+1845158	2023-09-19 15:14:31.384173+00	2023-09-19 15:14:31.384173+00	1	[-0.018216625,-0.021992933,0.02677976,0.004270652,0.043820746,-0.045654044,0.018518092,0.02646409,0.005913688,0.03150768,0.02571013,0.0431024,0.052603524,-0.008386439,-0.008438408,-0.003033176,-0.079457164,-0.039995465,0.006009711,0.0054634223,-0.09697351,-0.009995415,-0.018390473,-0.001830463,0.009867985,-0.076623395,-0.0036434678,0.011707033,-0.024745638,0.022376023,0.04186702,0.020140441,-0.03977035,-0.0028707478,0.001226149,-0.007068186,-0.031281013,0.05135731,-0.021723956,0.027699945,0.036424343,-0.0064942944,0.032663822,0.028299244,0.008333455,-0.023396542,-0.041502096,0.014348426,-0.035472836,-0.056858383,-0.05151179,-0.02882019,-0.018723259,0.01807717,-0.032426864,0.035049606,-0.03140334,-0.02450383,-0.037973173,-0.0031534722,-0.019709166,-0.05703406,0.041562356,-0.032093253,0.04250074,-0.0013237312,0.040238854,-0.017384026,-0.04010435,-0.027211472,0.042404205,0.031056333,-0.03143826,-0.026360508,-0.0021553577,-0.0011489555,-0.061376385,0.03630811,0.01752671,-0.03891008,-0.009738006,-0.02510016,-0.033424266,-0.10985664,-0.06933286,0.08841966,-0.002716271,0.023390992,-0.016110899,0.04997498,-0.03663504,0.010310452,-0.020320047,0.020703023,-0.052786935,0.021951176,0.003322747,0.015403213,0.009903382,0.035331454,-0.010879851,-0.022673264,0.051682398,0.019598125,0.04086898,0.016842023,-0.029746924,-0.0066556,-0.059619673,-0.102453165,-0.10149043,-0.0073507656,-0.091189824,0.060333993,-0.016634144,-0.037629146,0.025433015,-0.022521248,0.028640147,0.018815178,-0.05807291,0.04312729,0.024279358,-0.0003638775,-0.03241109,0.043679424,-0.0087886825,0.032475546,0.013604338,-0.03128194,0.061907757,-0.015891012,0.07278607,-0.0030882577,0.0262554,0.04164585,-0.01217153,0.042494226,0.046455856,0.0276577,-0.03825405,0.013110028,0.0010490722,-0.014809772,-0.014556551,-0.1011372,0.040175542,-0.046736162,-0.037408862,-0.003108904,0.043949988,-0.005193056,-0.03745613,0.047509633,0.03636503,0.0311914,0.070054166,0.010369525,0.046029914,-0.055235207,0.0125895925,-0.025896722,-0.02778954,-0.014574004,0.07002436,0.046639808,0.009611999,-0.0031514226,-0.0029139912,0.0066724024,0.0056122257,-0.13986586,0.015797146,-0.06550711,0.040192705,0.0054050153,-0.006041187,-0.002744037,0.027680414,-0.01717878,-0.0019511058,-0.02470942,-0.00028743682,0.03236084,-0.03922094,0.0043871887,0.006889236,-0.035731867,-0.00037300945,0.05574634,-0.06631903,0.022324277,0.054386325,-0.05856234,-0.038497146,0.020292567,0.068702064,-0.1533165,-0.05195847,0.029417675,0.03576613,-0.017671578,-0.008369567,0.030751897,0.0015565852,-0.001881328,-0.092181906,0.02494289,0.03309851,0.019009314,0.027566673,0.0057506426,0.019691495,0.005096437,-0.008758058,-0.054626275,-0.0070995926,-0.069044515,-0.061408173,0.007971756,-0.0021814387,-0.014529819,0.04039577,0.007087294,-0.0029525012,-0.008527706,-0.004470307,0.005834377,-0.020867018,-0.0010624175,-0.011497835,0.0066582267,-0.026125634,0.01370637,-0.04012622,0.05203758,0.02421192,0.046896894,-0.0598884,0.05277744,-0.019797595,0.088693894,0.004801014,-0.014886764,-0.0007251437,0.016554287,0.0051345467,0.024804963,0.012162376,-0.03063207,0.039749984,-0.042074826,-0.034170136,0.015468091,0.04623719,-0.017839795,-0.042607766,0.050848503,0.0068590157,0.060243435,0.007653377,0.04432894,0.005879329,0.12359756,0.02537984,-0.017554108,-0.08574852,0.017274687,0.041740056,-0.020608213,-0.003856001,0.015719512,0.036207907,0.043252245,-0.027178086,0.009293967,-0.029998707,0.047635105,0.06205866,0.016686628,0.007271678,-0.043381985,3.8053713e-05,0.0131723285,-0.004268705,0.013916615,0.0008250809,-0.0008948526,-0.053370606,0.023238933,0.03654191,-0.0027710323,0.010628547,0.043814164,-0.022204759,-0.01898186,0.017438741,-0.00043040878,-0.03179555,0.047023192,0.0021062172,-0.040916294,0.02327947,-0.0037316668,-0.036983203,-0.02326565,-0.01939749,0.010643999,0.069220126,-0.004046561,-0.019777503,-0.053731322,0.02556628,0.0054717674,-0.023531232,-0.0044843117,0.011306603,-0.023118863,-0.012968873,0.057881445,-0.05267256,0.0153931035,0.082473576,-0.039221667,-0.008008247,-0.033701926,0.033307552,-0.018961407,0.045655474,0.0035987615,-0.043577835,0.003762644,-0.020357804,0.022814263,-0.03706104,0.013555311,0.056301504,-0.026436822,-0.030336866,-0.06962052,-0.006402481,-0.0445703,-0.0034843115,-0.018453326,-0.025896663,-0.014933767,-0.025398081,-0.0030740967,-0.029405646,-0.02334673,0.015142223,-0.016084889,-0.044312235,0.046125565,0.0031867356,0.0017066477,-0.010378672,0.016554968,0.046892792,0.03278493,-0.059784025,0.0058537745,-0.07006699,0.011401549,0.005087481,0.031003077,-0.015447427,0.035551574,0.018388102,-0.012081318,-0.0160953,0.013449592,0.00865619,-0.026913565,-0.05202421,-0.015503233,-0.014657708,-0.011728372,0.002704698,0.0015655865,-0.060114566,0.0347875,0.004749593,0.036881294,0.008642254,-0.020391796,0.020012975,0.0025107374,0.0044476422,-0.04926797,0.007949995,0.06546818,0.06459321,-0.022077587,0.001813845,0.027878046,-0.0126844095,-0.041422796,-0.035939027,-0.050003383,0.042014785,0.024826957,-0.027511392,-0.032028213,0.032709017,0.032831706,-0.0091262935,0.051475365,0.0084324945,-0.052261773,-0.031730328,-0.010613661,0.018424967,4.1460822e-05,0.03896768,-0.034712628,0.0048707863,-0.031472377,-0.010714202,-0.0034506223,0.036024574,-0.027212609,-0.14360546,0.01806847,0.009799488,0.008012023,-0.05135289,0.008539633,-0.056318745,0.011849498,0.010603325,-0.010865624,0.032583755,-0.07822787,-0.00046479228,-0.017388323,0.10970316,0.07472136,0.01973863,-0.021627152,-0.0025504024,0.0047038686,-0.02300811,0.010098778,-0.018077133,-0.06591332,0.013274678,-0.010712689,-0.020136619,-0.038052518,-0.040888455,-0.0048185573,0.03639189,0.090508744,-0.02478363,-0.014836298,-0.0016641791,-0.025338251,0.009102187,0.031337097,-0.018146008,-0.019614553,-0.037475042,0.079941005,0.0021983215,-0.044238884,0.041829776,0.045690946,-0.008170482,-0.006748737,-0.020691812,0.06559695,-0.037477434,-0.03013426,0.03313326,-0.0025750746,0.034783233,0.0084495945,-0.022125952,0.02655836,-0.0083471695,-0.0052202903,-0.039537355,0.00062901416,0.0059851287,0.026271876,-0.009466933,0.020764425,0.014980321,-0.019797057,0.03285324,-0.044974983,-0.0058940467,-0.013132032,0.013054039,-0.008744086,0.0022474842,-0.0066023893,0.0017747139,-0.0027531327,0.04955811,0.014076121,-0.004842421,0.0058588306,-0.069632456,0.0022806313,-0.042072166,-0.03669423,-0.0466142,-0.0041732164,0.022697333,0.0014046315,0.005500186,-0.018880498,-0.028734347,-0.09545887,-0.011736893,0.009979889,-0.0055262316,0.0023246107,0.03435156,-0.006353989,0.011900471,-0.010845987,-0.005999243,0.08023899,0.03464494,0.0023298953,-0.056914322,0.001957236,0.04596555,0.06421805,-0.028161246,-0.01493084,-0.011774942,-0.03774446,0.010615122,0.022626469,0.012579294,0.14007124,-0.009100008,-0.043778755,0.04938637,-0.024519784,-0.019745385,0.056852337,0.018785274,0.032340553,0.022345943,0.03389584,0.009412744,-0.042931896,-0.02683594,0.05158558,-0.028784744,-0.05299233,0.040859077,-0.04101954,-0.049321864,-0.008837615,-0.023207845,0.0017808576,-0.020180104,-0.0023518277,0.054327633,-0.06149841,0.065012194,0.025709957,0.005580446,0.027492471,-0.010188245,-0.036997832,-0.033100035,0.0065854057,0.019842334,-0.007876805,-0.051987536,0.06369901,-0.0075119496,0.03534054,-0.07578151,0.05273791,0.041389845,0.017615814,-0.022447933,-0.029866243,0.007936158,-0.046781898,0.0057601654,-0.038318545,-0.023922175,-0.053553984,0.023315782,-0.03285405,-0.019542633,-0.008003799,-0.017561076,-0.029689528,-0.016453857,-0.010865973,0.0044685085,-0.01198445,0.059311192,-0.02750252,-0.01174314,-0.015310063,0.015265312,-0.020909972,0.022796977,-0.001898866,0.034512326,0.015782641,0.035990655,0.049408495,-0.049157538,-0.029400442,0.004213016,0.0529095,-0.024331741,0.0044146827,0.039563723,0.016981676,0.0052378317,-0.058109555,0.06904421,-0.025809528,0.0006102204,-0.009364421,-0.009438361,-0.019185651,0.072670534,-0.06211184,-0.015839947,-0.022860847,0.012756041,-0.032965485,-0.016550845,-0.001649432,0.008370886,-0.02698965,0.0022993227,0.023108298,-0.006408885,0.037639227,-0.0002684338,-0.00034842087,-0.0052423156,0.008419942,-0.028324144,0.031725105,0.03413642,-0.03581964,-0.015545477,0.0061986796,0.01069263,-0.049929738,0.018392816,-0.009030531,-0.03015644,0.009850672,-0.0010066954,-0.0003574535,0.006662994,0.035421956,-0.037984364,0.049657002,0.024875766,-0.010703205,0.00016814753,0.0368507,-0.09852605,0.042057525,-0.00066148536,-0.014316931,0.020631053,-0.03250653,0.015612778,0.03778132,0.030013463,-0.019964922,-0.043129414,0.03129256,0.023092788,-0.027108079,0.033658806,-0.039345503,-0.014569578,0.0023564014,-0.008430694,-0.035106994,-0.025924526,0.031668305,-0.024456443,0.007348333,0.04277188,-0.028064666,-0.06138904,-0.024829423,0.0028322386,-0.022799123,0.047542084,0.01605937,0.05787388,0.060959503,0.06383913,-0.026288647,-0.05005838,0.009912144,-0.009333952,-0.06317141,-0.007949985,-0.038571063,0.058687244,-0.01867845,0.028681327,0.07513563,-0.050049406,0.021988487,0.01673,0.025304997,-0.033723593,0.0026712508,-0.0063619018,-0.041558508,-0.013793196,0.03621481,-0.035873473,0.04034256,0.015215154,0.022904783,0.00512532,0.004578007,0.031686757,0.031144772,0.008940557,-0.003997609,0.059238426,-0.00454929,0.063024275,-0.009605661,-0.025089674,0.039173312,-0.032900434,-0.004065948,0.04358961,0.023775939,-0.011601326,-0.026719982,0.007892596,-0.04068865,-0.050978754,0.058542967,-0.0397259,0.007675726,0.038932916,0.0490978,0.0234518,0.032109447,-0.010312887,0.04172466,-0.029599302,-0.008888077,-0.059125986,0.051496454,-0.0018317461,-0.015399809,-0.03471612,-0.05688957]	http://localhost:3001/help/gitlab-basics/start-using-git	1. Authenticate with GitLab by following the instructions in the [SSH documentation](../user/ssh.md).\\n1. Go to your project's landing page and select **Clone**. Copy the URL for **Clone with SSH**.\\n1. Open a terminal and go to the directory where you want to clone the files. Git automatically creates a folder with the repository name and downloads the files there.\\n1. Run this command:\\n\\n   ```shell\\n   git clone git@gitlab.com:gitlab-tests/sample-project.git\\n   ```\\n\\n1. To view the files, go to the new directory:\\n\\n   ```shell\\n   cd sample-project\\n   ```\\n\\nYou can also\\n[clone a repository and open it directly in Visual Studio Code](../user/project/repository/_index.md#clone-and-open-in-visual-studio-code).\\n\\n### Clone with HTTPS\\n\\nClone with HTTPS when you want to authenticate each time you perform an operation\\nbetween your computer and GitLab.\\n\\n1. Go to your project's landing page and select **Clone**. Copy the URL for **Clone with HTTPS**.\\n1. Open a terminal and go to the directory where you want to clone the files.\\n1. Run the following command. Git automatically creates a folder with the repository name and downloads the files there.\\n\\n   ```shell\\n   git clone https://gitlab.com/gitlab-tests/sample-project.git\\n   ```\\n\\n1. GitLab requests your username and password.\\n\\n   If you have enabled two-factor authentication (2FA) on your account, you cannot use your account password. Instead, you can do one of the following:\\n	{"info": "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments", "type": "howto, tutorial", "group": "Source Code", "stage": "Create", "title": "Command line Git", "source": "/doc/gitlab-basics/start-using-git.md", "description": "Introduction to using Git through the command line.", "source_type": "doc"}
 1845897	2023-09-19 15:14:33.45371+00	2023-09-19 15:14:33.45371+00	1	[-0.002975507,-0.03446417,-0.0014412393,0.028560579,0.028351583,-0.022669485,0.012630757,0.034683146,-0.008044167,0.037278745,0.022919547,0.014074197,0.011427886,0.0148411,0.020319222,-0.01997527,-0.060290568,-0.021166507,-0.03821949,0.0030332534,-0.05290991,-0.017603263,-0.042098742,-0.022122053,0.0439813,-0.04405995,0.012150533,0.047136355,-0.040349096,0.027822707,-0.0073073185,0.01739842,-0.039953556,-0.00018394808,0.02007223,0.025090244,-0.0336565,0.047805693,-0.0055395216,0.05168296,-0.01684863,-0.02768711,0.03502932,-0.017228104,-0.032760616,-0.023791306,-0.020578483,0.01550896,0.021049479,-0.08179672,-0.06524448,-0.035280567,-0.022754444,0.0072131483,0.021236533,0.018703977,-0.035437655,0.0155537855,-0.037097037,-0.021486586,-0.011231294,-0.032932386,0.014700773,-0.055859115,0.06797819,0.020168345,0.025920669,-0.04470521,-0.027926637,-0.020927839,0.05200126,0.021207439,-0.012158053,-0.031559475,0.013654653,0.013155621,-0.030381229,0.05442618,0.02661434,-0.04567344,-0.02777012,-0.048893157,-0.035855323,-0.09784768,-0.017030733,0.08539952,0.016141709,-0.027737072,-0.015183097,0.040223043,-0.029946439,0.0067463247,0.023449922,0.032521628,-0.013157035,-0.0022749351,-0.0107881585,0.03710194,0.0493745,0.034829058,-0.030308772,-0.036838204,0.05440965,0.019315403,0.048805322,0.007886728,-0.020864975,-0.0068791076,-0.053274754,-0.07343897,-0.09009803,-0.0041427026,-0.07076613,0.05619757,-0.021904204,-0.012157343,0.06409497,-0.01999428,0.03215127,0.028343555,-0.06039394,0.051294524,0.039939243,0.020856408,-0.005667137,0.0046252357,0.004190477,-0.013429715,0.06500643,0.023946155,0.0659464,0.024573201,0.07219544,0.012088806,0.0027351843,0.04284778,0.009430129,0.015181566,0.03167793,0.028355327,-0.020574749,0.0020354823,-0.028389273,0.019625407,-0.039858736,-0.03421924,0.0029289916,-0.057007685,-0.085864775,-0.045491222,0.0077771544,-0.030369308,-0.0023492044,0.03439524,0.021192953,0.048810013,0.016754543,0.034994055,-0.013410029,-0.05600123,-0.019859115,-0.012455576,-0.010773511,0.007839359,0.022921167,0.02260338,0.012718764,-0.021237187,0.027454393,0.0076936022,0.017951256,-0.1584664,0.022915903,-0.019322984,0.069585636,0.012730534,-0.015950015,-0.006689168,0.017668255,0.005489519,-0.049037963,-0.036506787,0.0024629075,0.03205719,-0.04765788,0.009836979,-0.003955096,-0.009437878,-0.009136652,0.07200995,-0.03193805,0.038200084,0.075081356,-0.08545049,-0.04860645,-0.022272099,0.0803562,-0.14650548,0.0025360098,-0.007402259,0.03676379,-0.036169004,0.002184254,0.034336314,0.008293864,0.044024218,-0.06004226,0.0074922764,0.036932845,0.05461806,-0.02622449,0.024558637,0.020066567,0.008275559,-0.01374943,-0.068677045,-0.001896888,-0.055756565,-0.095257394,-0.011867872,-0.034283575,-0.0015156637,0.027203059,0.031354778,-0.0038526724,0.0067462227,0.03996131,0.002513205,-0.0030241057,-0.004432389,0.011224119,0.03049106,-0.042230293,-0.02343933,-0.054116443,0.034071434,0.0048457575,0.0108748935,-0.06677845,0.039982025,-0.004319002,0.065812394,0.032068793,0.01144499,0.019132825,0.027910441,-0.0077196946,0.05078279,0.0017513483,0.0035566115,0.06252043,-0.024393756,-0.048974894,0.010340624,0.043444,-0.026678301,-0.0063279597,0.051317684,-0.007843819,0.023769347,-0.034630056,0.0432345,-0.025553877,0.1644644,0.00018843103,-0.03444113,-0.040898792,0.008630075,0.066636436,-0.005076477,-0.030576,0.0040481123,0.028200477,0.025617857,-0.036517084,-0.0035601186,-0.007675127,0.05469483,0.052189656,0.016414061,0.003713987,-0.029362364,-0.0059494395,0.016190005,0.020864397,0.0028685625,0.033577625,-0.0051905196,-0.022548357,0.02518256,0.03108577,-0.0140897455,0.0037868326,0.0432846,-0.023560304,-0.03389467,0.0120242005,-0.006478558,-0.063616,0.041449692,-0.012190939,-0.011448274,0.0010984241,-0.04919858,-0.027934799,-0.017126163,-0.01894803,0.0042042476,0.043743912,0.00491149,-0.011964117,-0.015374967,-0.022108652,-0.025025172,-0.05281402,-0.03525128,-0.006329018,0.0025256132,-0.007816896,0.049703293,-0.022080814,-0.037706725,0.059441254,-0.02009117,0.007936506,-0.07231115,-0.012878837,0.00023042757,0.04111886,-0.025282772,-0.050310783,0.0017783674,-0.034620237,0.00046409975,0.010813913,0.02992662,0.0063258596,0.012760246,-0.03354997,-0.031053826,-0.0016358781,-0.06435095,-0.02684679,-0.007526261,-0.008752543,0.011087066,-0.04072736,-0.025914654,-0.030361608,-0.025848798,0.028411515,-0.0026572414,-0.03190963,0.044999994,9.078599e-06,0.019530673,-0.01578165,0.016358195,0.039658457,0.031561397,-0.07032193,0.0114800185,-0.024779364,0.018139116,0.020718886,0.026477762,-0.03965283,0.047948055,0.041415688,0.0035276562,-0.037570935,0.01511907,0.041064512,-0.03443014,-0.029323304,-0.066951156,-0.010612077,-0.032244068,-0.006536541,0.008720253,-0.066528946,0.01613794,-0.0023786929,0.056077313,-0.023167353,0.0038702697,0.010819935,0.040902685,0.008122128,-0.049430367,0.010880854,0.06493815,0.043415822,0.007319467,0.01424073,0.057605762,-0.051431254,-0.02330083,-0.051720753,-0.06969796,0.02034199,0.01755858,-0.06208133,-0.05731738,0.03540614,0.021498986,-0.019265778,0.055766866,0.0024668246,-0.054114264,-0.04148847,0.01573339,-0.0066883774,0.004427894,0.061964888,-0.050446384,0.014666775,-0.0021304805,-0.01636639,-0.04303525,0.04619331,-0.043058205,-0.08924278,0.021767037,0.0040358747,0.009259247,-0.040376846,-0.01573307,-0.051636826,-0.012920214,0.039266806,-0.0074705775,0.041447517,-0.011657719,-0.030802334,-0.014808148,0.15151682,0.10463096,-0.0033129503,-0.018656923,-0.03415156,0.0059495033,-0.02975236,0.031434525,0.0009136689,-0.054491833,0.010483258,-0.056874298,0.015073498,0.011001106,-0.07482625,0.00037004013,0.05538446,0.095774025,-0.009116867,-0.015670752,-0.021463664,0.014870388,0.004353001,0.014504146,0.0022420525,-0.025188634,-0.05276787,0.05459351,-0.012098083,-0.011674118,0.047850728,0.046636615,0.0052860104,0.03393486,-0.028080786,0.07807821,-0.028525531,0.013678311,0.06038334,0.0064654336,-0.004089872,0.024913298,0.0076107574,-0.0006447826,-0.032680523,-0.018323565,-0.067197435,-0.004965652,0.0077982885,-0.00050740683,-0.027820585,-7.069133e-05,0.006382064,-0.002869369,0.034825943,-0.031157035,-0.008696061,-0.03642395,0.0015966606,-0.030808777,-0.0055884,-0.0010435496,0.020149425,0.006877241,0.028500214,-0.042550433,-0.009215263,0.01355479,-0.036472436,-0.029056251,-0.034400716,-0.023761794,-0.062474467,0.027604604,0.022694467,-0.005832801,0.0026678003,-0.029199328,0.006058168,-0.058746763,-0.064583756,0.04243657,0.020251794,0.015243002,-0.0020885528,0.02291587,0.004669643,0.0014440088,0.024143504,0.097562626,0.028763779,0.004619421,-0.040038187,0.013683903,0.034151588,0.05667921,-0.0036833002,-0.031231254,-0.011771049,-0.035539128,0.0023767762,0.022924569,0.0128877135,0.10774022,-0.0021020742,-0.038107876,0.04981892,0.008850054,-0.015909933,0.01873764,0.018393073,0.03353752,-0.015967824,0.020325737,-0.024209293,-0.034643672,-0.047785673,0.043631982,0.018897975,-0.05252106,0.035888687,-0.0065478603,-0.042598166,-0.01705782,-0.024905391,0.01646689,-0.0064348257,-0.0054306607,0.026334347,-0.0726894,0.040774204,0.031584434,0.059593827,0.036979284,0.013149504,-0.014718017,-0.021365685,0.021508925,0.0001567774,0.020591097,-0.03009121,0.07480902,0.016838048,0.047204748,-0.06170477,0.032972623,0.022127748,-0.0001354127,-0.020214437,-0.061735813,0.03442764,-0.04650348,0.004951292,-0.024983797,-0.041986465,-0.07251547,0.009581934,0.0022962478,-0.03172687,-0.020259237,0.0018236627,-0.009212498,-0.01096043,-0.023483057,-0.017798373,0.016254084,0.051380012,-0.035938505,0.0031422642,-0.049075533,0.016861003,0.012184758,0.029569538,0.013747104,0.026905226,-0.0038812552,0.045224227,0.029256461,-0.021680579,-0.014064881,-0.0021515763,0.035187725,0.014057359,-0.0041924636,0.07007375,0.03523739,-0.0194964,-0.041381884,0.050138753,-0.021420559,0.01385231,0.004693604,-0.023605634,0.0056487983,-0.008387312,-0.036772963,-0.010369716,-0.025228607,0.017938383,-0.06461793,0.028181242,-0.012140617,0.038060706,-0.008992471,0.01909917,0.03820809,0.03440275,0.04639813,-0.020012556,-0.009482856,-0.016580539,-0.007559816,-0.031673647,0.04597943,-0.00029700846,-0.0072422633,0.0046468815,0.0006610864,-0.01963725,-0.056423258,-0.002470032,-0.009305307,-0.013540181,0.0073801167,-0.009888846,0.02589637,0.06069638,0.041208535,-0.072850786,0.05536904,-0.0035656726,-0.012333557,-0.0045057517,-0.017544266,-0.06452815,0.011355937,-0.015589453,-0.008749982,0.01583877,-0.0318753,0.01714231,0.048778683,0.054332435,-0.01658093,-0.049993087,0.026424674,0.037428625,-0.04126482,0.030754238,-0.045532394,0.00016421649,-0.0012630327,0.008996681,-0.024819836,-0.004166266,0.07313753,-0.04167185,0.011569582,0.010581133,-0.021192731,-0.031059282,-0.022376742,-0.030951051,-0.019820187,0.03374584,0.033810887,0.088846214,0.05804105,0.005408214,-0.06150034,-0.038128696,0.009142984,-0.025912298,0.005124977,-0.0014456877,0.014398213,0.0628869,0.024985678,0.016445678,0.06498791,-0.051986374,0.041324493,0.020889906,0.054395083,-0.025019525,0.025624325,0.02096725,-0.02792629,0.0019203157,-0.009807038,-0.056296047,-0.014678283,0.0051876167,0.03310266,0.025807068,-0.0074959425,0.052998394,0.00046814812,-0.0028783302,-0.02330703,0.07475174,-0.010904162,0.05990403,0.0030862608,-0.026401302,0.062439226,-0.037912283,0.028347371,-0.030111326,-0.005207422,0.010590911,-0.018268196,0.010681638,-0.023951929,-0.06022113,0.042398587,-0.015794214,-0.02029552,0.033101473,0.0401979,0.01949432,0.015246553,-0.024918683,0.02019291,-0.046099853,0.033724505,-0.004109672,0.04348799,0.01964356,-0.019709239,-0.027218156,-0.033928093]	http://localhost:3001/help/development/project_templates	# Contribute to built-in project templates\\n\\n## Adding a new built-in project template\\n\\nIf you'd like to contribute a new built-in project template to be distributed with GitLab, please do the following:\\n\\n1. Create a new public project with the project content you'd like to contribute in a namespace of your choosing. You can view a working example [here](https://gitlab.com/gitlab-org/project-templates/dotnetcore).\\n   - Projects should be as simple as possible and free of any unnecessary assets or dependencies.\\n1. When the project is ready for review, please create a new issue in [GitLab](https://gitlab.com/gitlab-org/gitlab/issues) with a link to your project.\\n   - In your issue, `@` mention the relevant Backend Engineering Manager and Product Manager for the [Create:Source Code group](https://about.gitlab.com/handbook/product/categories/#source-code-group).\\n\\nTo make the project template available when creating a new project, the vendoring process will have to be completed:\\n\\n1. Create a working template ([example](https://gitlab.com/gitlab-org/project-templates/dotnetcore))\\n   - 2 types of built-in templates are available within GitLab:\\n     - **Standard templates**: Available in GitLab Core, Starter and above (this is the most common type of built-in template).\\n       - To contribute a standard template:\\n         - Add details of the template in the `localized_templates_table` method in `gitlab/lib/gitlab/project_template.rb`,	{"info": "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments", "group": "Source Code", "stage": "Create", "title": "Contribute to built-in project templates", "source": "/doc/development/project_templates.md", "source_type": "doc"}
 1846150	2023-09-19 15:14:34.304173+00	2023-09-19 15:14:34.304173+00	1	[-0.02307837,-0.009333914,0.026762482,0.018183473,0.048494335,-0.03210457,0.026819654,0.03811188,-0.02441863,0.024454376,0.049167026,0.030031446,0.01819342,0.02771243,0.016795428,-0.034635615,-0.10917935,-0.023566414,0.01957961,-0.011139956,-0.056451447,-0.0024921093,-0.013812862,-0.006455002,0.018187823,-0.044212546,0.01241299,-0.008154664,-0.085875854,0.05308572,0.009092246,0.019001223,-0.057668455,-0.0054025585,0.019179765,0.012804308,-0.024483776,0.075935744,0.00019707881,0.03785667,0.020995708,-0.019530732,-0.030630589,0.013706338,-0.0020011954,-0.020746762,-0.015281375,0.040465973,-0.020751227,-0.062292606,-0.084697515,-0.03957094,0.0016501822,-0.00046663787,-0.0018987951,0.0539634,-0.045091186,-0.012253537,-0.02466875,0.015209564,-0.015843255,-0.038363345,0.015125467,-0.043859005,0.056229554,-0.003291571,0.046824746,-0.042370033,-0.03840294,-0.03196091,0.057483353,0.043784376,-0.039131768,-0.017132306,0.012709443,-0.0035112097,-0.022223031,0.062172744,0.051022705,-0.016696367,-0.007867795,-0.038044173,-0.05249556,-0.078761846,-0.070760824,0.08810978,-0.0034275425,0.026368696,0.0005003134,0.03257707,-0.015947537,-0.0023308678,-0.0049369414,0.03415427,-0.062567286,0.025932007,-0.005528601,0.007327116,-0.0062577524,0.022875829,-0.024515638,-0.023128392,0.040147603,0.06335622,0.015271473,0.022004353,0.008903466,-0.00837594,-0.039473988,-0.07593181,-0.11760823,0.03019747,-0.07654353,0.021117961,-0.03712325,-0.018753266,0.046654277,0.0021338183,0.025137378,0.03205383,-0.032720547,0.024869982,0.03481707,0.023331158,-0.023379648,0.015890766,-0.008211219,0.013682971,0.026553242,-0.007818445,0.032498956,-0.027053164,0.042842817,-0.0019444249,0.017271915,0.009473461,0.01429124,0.04077547,0.015014538,0.029921984,-0.05129743,0.008710228,-0.030495385,0.039941628,0.040375862,-0.057537634,0.050530527,-0.02145906,-0.057667147,0.002756371,0.022195015,0.02374755,-0.036970157,0.0067377756,0.0055648047,0.056431405,0.023791203,0.028629532,0.014447488,-0.051673666,0.021162966,-0.05712647,-0.03070302,-0.037908893,0.03730511,0.034828052,0.036557343,-0.013917215,-0.010554812,-0.0012340843,-0.0016477266,-0.119337045,0.02874899,-0.030071288,0.042316206,0.0013888273,-0.041032206,-0.0116486,0.03193584,-0.002965789,0.0022680536,-0.015001095,0.042476635,0.059874497,-0.034623824,0.0056228656,0.012679182,-0.04106154,-0.004308003,0.055127062,-0.01834931,0.0073633958,0.038350128,-0.02621983,-0.051953815,-0.01715089,0.07472927,-0.12989044,-0.03692802,-0.0009748367,-0.016177505,-0.06441139,-0.0024355506,0.0123466095,0.009385961,-0.0060344483,-0.05837214,0.021537624,0.00085391145,0.05464397,0.014158736,0.015028212,0.034172907,0.013347191,0.009904822,-0.0410731,0.014181498,-0.076382734,-0.07620277,0.0013660843,0.0036523426,-0.041887823,0.063225724,0.052442487,-0.010116202,-0.0063439193,-0.008884205,0.012440072,-0.01215575,-0.025723033,0.0032944463,0.018626345,-0.0125199715,-0.011158041,-0.07320127,0.048967976,0.020163473,0.0057092994,-0.08592224,0.02735281,-0.00884968,0.08634053,0.008315529,-0.006316567,0.008147352,0.034299828,-0.0035706554,0.04780073,0.03814187,-0.016426528,0.055317923,-0.023833433,-0.069005154,-0.0041969432,0.02142701,-0.013403202,0.017309166,0.059873823,-0.0027939086,0.046947207,-0.007934691,0.06942978,-0.004412113,0.18189672,0.032464735,-0.025351577,-0.047257233,-0.012424435,0.036799982,-0.015395112,-0.004258858,0.017027985,0.048819937,0.048166044,-0.03550489,0.029581608,0.0027468018,0.046089035,0.035685122,0.045729846,0.0036475507,-0.026334042,0.00044782125,0.018846326,0.0139854,0.011394148,0.0049707573,-0.013791582,0.0018591615,0.005501535,0.045005865,0.0003488099,-0.037502863,0.01328518,-0.00070502394,-0.022633122,-0.004262027,-0.039097674,-0.063608535,0.043298393,-0.040088307,-0.013758312,0.020472167,-0.032486584,-0.032757644,-0.03745245,-0.007676939,0.011225928,0.04452826,-0.055526976,0.0027582743,-0.039797183,0.021689005,-0.006568772,-0.0117191225,-0.004075598,0.022830477,0.038016453,-0.05131084,0.017210625,-0.03372301,-0.014141237,0.054196794,-0.0037882936,0.0021974565,-0.04448119,-0.013120697,-0.027191171,0.07089364,-0.016507072,-0.03923321,-0.032779995,-0.04695232,-0.005847589,0.009971638,0.011367428,0.050710835,-3.4403263e-05,-0.010489301,-0.059048332,-0.016237345,-0.013288728,-0.037440978,-0.019301308,-0.023800088,0.0003731212,-0.05079443,-0.0070599513,-0.04489268,-0.021077752,0.039766457,-0.0021657515,-0.062058445,0.04888557,-0.021827675,0.041946054,-0.008774401,0.0022372976,0.06630733,0.03516491,-0.047776237,0.02321281,-0.030063527,0.02471016,0.009942362,0.011757758,-0.067180544,0.045608256,0.027072791,-0.010029543,-0.03359599,0.03525514,0.04465972,-0.025899032,-0.04506893,-0.052609783,-0.01953031,-0.038724557,0.010071934,-0.009412633,-0.05854656,0.04412396,-0.0070112557,-0.0085246125,-0.010162394,0.029602705,0.03789691,0.007208635,-0.022280632,-0.032603934,0.028645584,0.03004209,0.030080408,-0.015713952,-0.001639504,0.05154597,-0.03127957,-0.040908333,-0.03822871,-0.012197734,0.04598236,-0.029378017,-0.002649974,-0.04499065,0.016889388,0.026019238,-0.006404345,0.023325965,-0.0018116888,-0.057167616,0.033227764,-0.019018464,0.020753635,0.0065132063,0.038962916,-0.07412244,-0.014306051,-0.009201993,-0.024644842,0.0072796177,0.021566272,-0.021678507,-0.09543258,0.026886616,-0.024708174,0.0017984243,-0.027111627,-0.021367744,-0.023839502,0.02809425,0.030435916,-0.0039005273,0.03761747,-0.058262955,-0.012382442,0.001473644,0.1456534,0.08154477,0.021545028,0.016119448,-0.019157443,0.036522564,0.0004251127,0.03669153,-0.01719939,-0.030692765,0.01894809,-0.026197555,-0.026373738,0.0046628374,0.016365645,-0.0075348043,0.050385047,0.061625257,-0.03116562,-0.038888007,-0.049454503,-0.005987058,0.007618337,0.0019120547,-0.024119673,-0.02720725,-0.044039812,0.07812491,-0.024792142,-0.06699164,0.040649123,0.025485482,-0.0476631,0.030923545,-0.004167153,0.06895334,0.0077868095,-0.031074313,0.032278784,-0.019646162,0.07858043,0.00439521,0.015948879,-0.012064754,0.00847401,-0.036123697,-0.036412947,0.018230274,0.024903351,0.023502965,-0.031193566,0.012935772,-0.013750167,-0.0288866,0.01720818,-0.05572706,0.0032184161,-0.034196194,-0.011426717,-0.02813301,-0.019761734,0.037507147,0.023762757,0.018378235,0.004954342,0.014400795,-0.01652099,-0.007336398,-0.07026635,-0.011038763,-0.031338055,-0.012867318,-0.013693223,0.01862424,0.060852546,0.0023100309,0.0065558883,-0.034204926,-0.009872526,-0.09999504,-0.0035114065,0.033629198,-0.003755964,0.039069816,0.016972385,-0.028856328,0.007481253,-0.0022437803,-0.009244799,0.07715088,0.0004909499,-0.012219465,-0.07533525,0.02736386,0.04907508,0.029202336,-0.035532784,-0.002229034,-0.014525287,-0.06792768,0.020228831,0.017238434,0.023165043,0.12585779,0.0151186,-0.034957346,0.03543148,0.027483584,-0.007383255,0.053733297,0.0155338235,0.016421389,-0.021980116,0.026870795,-0.00842741,-0.047603805,-0.04681739,0.057124518,0.01261956,-0.055176616,0.0118191,-0.04841878,-0.02855486,0.0020840038,-0.036991682,0.0046086702,-0.037981857,0.005211678,0.026787026,-0.040275436,0.02288654,0.015817033,0.025117617,0.0290972,-0.016300118,-0.03639844,-0.016951751,0.032275934,0.05171711,0.017493224,-0.038007032,0.06440336,-0.005505469,0.017161207,-0.056854945,0.073173456,0.056230668,0.026414068,-0.0313535,-0.0009140174,0.011017697,-0.097607665,0.0056751803,-0.031303655,-0.04493728,-0.025579339,0.05389274,-0.009782466,-0.012289833,-0.025989687,-0.009695292,-0.018686213,-0.0010406761,-0.012302713,0.011920215,-0.011203583,0.047571905,-0.053955857,-0.027256746,-0.001610302,0.023095654,-0.03749397,0.0076810536,-0.0040817126,0.012782413,0.0068754237,0.053922094,0.035574343,-0.023868255,-0.02263846,-0.0033175095,0.062307578,-0.021377904,-0.0064216615,0.05356666,0.026139375,-0.006339881,-0.060641475,0.047182634,-0.067264065,-0.024102611,-0.0035024015,-0.0055608833,-0.009593527,0.019164914,-0.027935613,-0.007784924,-0.0013269745,0.032880265,-0.02045656,-0.012971003,-0.00711693,0.03413104,-0.01648979,0.018714424,0.0009592405,0.015839517,0.032805774,-0.0017079449,0.033110764,-0.016049588,-0.009608765,-0.038091764,0.034820125,0.027630858,-0.02983619,0.008732037,-0.036676385,0.053226728,-0.049636673,0.004908678,-0.043553576,0.010402396,-0.004264139,-0.006491534,-0.019129958,0.053497147,0.09457747,-0.093873434,0.06726358,0.022798825,-0.034700923,-0.0067828973,0.020849815,-0.079323374,0.010074926,-0.017335769,-0.030300172,0.020750096,-0.01220953,-0.0038057114,0.004565492,0.030453159,-0.012160231,-0.032458663,0.029813979,0.014064024,-0.040071372,0.036577433,-0.034059405,0.0059996527,0.0054287054,-0.012416884,-0.062087137,-0.0071356758,0.014938742,-0.04444513,0.012148903,0.014722585,-0.034368552,-0.008665415,-0.044354185,-0.0072790547,-0.0024731525,0.047214627,-0.0035067538,0.023734381,0.021334592,0.0427744,-0.03362458,-0.012678691,0.026935678,-0.017433438,-0.06153943,-0.02849249,-0.017647158,0.024430761,-0.050685734,0.014320998,0.05744627,-0.04517466,-0.0020021566,0.009205041,0.022835469,-0.026122285,0.03278983,-0.0020906136,-0.01528137,-0.0038402213,0.015211179,-0.041736927,-0.0067757806,0.00073892414,0.027132913,0.025093075,-0.005017329,0.056419514,0.019607136,0.02868298,0.03861669,0.033981256,0.018854707,0.040623453,-0.005553984,-0.03657054,0.049549125,-0.020003986,0.007872978,0.027963758,0.028216686,-0.013303896,-0.020807082,0.030238092,-0.04828906,-0.051084578,0.019046724,-0.054882687,-0.014469894,0.051937435,0.038200866,-0.0020773602,0.01732874,-0.015272686,0.057468437,-0.049879145,-0.021239817,-0.063543394,0.018798603,-0.011035183,-0.017401466,-0.03681258,-0.03170905]	http://localhost:3001/help/security/reset_user_password	# Reset a user's password **(FREE SELF)**\\n\\nYou can reset user passwords by using the UI, a Rake task, a Rails console, or the\\n[Users API](../api/users.md#user-modification).\\n\\n## Prerequisites\\n\\nTo reset a user password, you must be an administrator of a self-managed GitLab instance.\\n\\nThe user's new password must meet all [password requirements](../user/profile/user_passwords.md#password-requirements).\\n\\n## Use the UI\\n\\nTo reset a user's password in the UI:\\n\\n1. On the left sidebar, expand the top-most chevron (**{chevron-down}**).\\n1. Select **Admin Area**.\\n1. On the left sidebar, select **Overview > Users**.\\n1. For the user whose password you want to update, select **Edit**.\\n1. In the **Password** area, type a password and password confirmation.\\n1. Select **Save changes**.\\n\\nA confirmation is displayed.\\n\\n## Use a Rake task\\n\\n> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/52347) in GitLab 13.9.\\n\\nUse the following Rake task to reset a user's password.\\n\\n::Tabs\\n\\n:::TabTitle Linux package (Omnibus)\\n\\n```shell\\nsudo gitlab-rake "gitlab:password:reset"\\n```\\n\\n:::TabTitle Self-compiled (source)\\n\\n```shell\\nbundle exec rake "gitlab:password:reset"\\n```\\n\\n::EndTabs\\n\\nGitLab requests a username, a password, and confirmation of the password. When complete, the user's password is updated.\\n\\nThe Rake task can take a username as an argument. For example, to reset the password for the user with username\\n`sidneyjones`:\\n\\n::Tabs\\n\\n:::TabTitle Linux package (Omnibus)\\n\\n  ```shell	{"info": "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments", "type": "howto", "group": "Authentication and Authorization", "stage": "Manage", "title": "Reset a user's password", "source": "/doc/security/reset_user_password.md", "source_type": "doc"}
 1846818	2023-09-19 15:14:36.428522+00	2023-09-19 15:14:36.428522+00	1	[-0.033004828,-0.04789756,0.008883549,0.028347274,0.008872242,-0.040837202,0.0021910116,0.028552918,-0.02456847,0.014781029,0.073791645,0.011762146,0.03110744,0.021401834,0.013827324,-0.022584211,-0.053606093,-0.01813572,0.025424058,-0.0037516481,-0.05835193,0.008741888,-0.05689215,0.0008747738,0.014105624,-0.07269924,0.009160403,0.024776278,-0.01620425,0.024899362,-0.0014604074,0.02513517,-0.050983436,-0.0004032994,0.0064352583,0.019579412,-0.02415792,0.06369738,0.006153813,0.03997494,-0.027568413,-0.03262745,0.012340112,-0.015688987,-0.013408625,0.00016266257,-0.0070852805,-0.033135884,0.03218247,-0.08648827,-0.070384495,-0.034018442,-0.006123706,0.014700685,0.05467724,0.06540189,-0.058480605,0.02551717,-0.027094455,0.0009863325,0.004995493,-0.019576028,0.002165551,-0.013120349,0.028393913,0.017216444,0.047347292,-0.010103486,-0.062397696,-0.0198423,0.03833202,0.045781404,-0.006158668,-0.017877584,0.02535643,0.01982668,-0.03174624,0.03507473,-0.02049714,-0.043399196,-0.04155977,-0.009702218,-0.014061423,-0.11697901,-0.049313016,0.08228433,-0.012811016,-0.020883502,-0.0093764765,0.001982525,-0.014413687,-0.017371679,0.067102484,0.031906474,-0.022453431,-0.010128278,0.021784948,0.033479128,0.014075002,0.033680607,-0.03459436,-0.03151395,0.038285233,0.015420974,0.06880371,0.004689311,-0.0118115675,0.031346075,-0.053241413,-0.06481146,-0.1146216,-0.0073215575,-0.049421098,0.03602616,-0.036114454,0.01852865,0.023767686,-0.006527602,0.025293455,0.012312634,-0.044407886,0.048337586,0.03774452,0.026149644,-0.022221442,0.0019456277,0.016024431,0.01243296,0.04861304,0.014586217,0.040803507,0.021975467,0.07065115,0.0020917996,0.015241839,0.029294394,0.020290805,-0.0059251036,0.05004704,0.024269173,-0.028417919,0.009423882,-0.049051944,-0.0059721298,-0.011794282,-0.056989685,-0.015940854,-0.050666653,-0.08043248,-0.036083594,-0.0007831626,-0.022329558,-0.003201393,0.03848475,-0.004757406,0.036366276,-0.009229408,0.015262205,-0.019566115,-0.054079935,-0.019958835,-0.031337682,-0.030882051,0.013992298,0.02729715,0.009883635,0.021976551,-0.022449506,-0.010849226,0.028346488,0.028056785,-0.14559428,0.06945901,-0.022267526,0.049884483,0.0016129358,-0.0032775197,0.008383128,0.006490772,-0.019747237,-0.023769679,-0.018044017,-0.011601334,0.05475747,-0.043864176,-0.02684159,0.011302796,-0.0016870333,-0.020691447,0.074088186,-0.020241678,0.047090862,0.063809305,-0.083935134,-0.036086354,-0.016565427,0.047377568,-0.13049547,-0.012455373,0.0054762373,0.01511265,-0.013004448,0.01027258,0.0056719063,0.0011995325,0.038524672,-0.041272163,0.008893475,0.03579861,0.03749596,-0.03792712,0.012717264,0.044477772,-0.0028484887,0.005811189,-0.07378103,0.010345791,-0.060098644,-0.098438546,0.011642352,-0.00042830245,-0.010455204,0.00834169,0.009028817,-0.016466223,0.043455154,0.040134363,0.011034376,0.001157681,0.0023864934,0.008458421,0.010700105,-0.05150344,0.026178433,-0.06288634,0.05575189,-0.0024484904,-0.0005265769,-0.0855972,-0.014785279,-0.009247375,0.06207608,0.011005521,0.023885312,0.00037700127,0.013923668,0.015996257,0.036404546,0.04929381,0.007451404,0.07547252,-0.036573213,-0.02250746,0.0011718898,0.04722864,-0.033456314,0.011567799,0.037740808,0.017104965,0.02102532,-0.06359745,0.045126647,-0.014814066,0.16737138,0.02043367,-0.049493648,-0.059043683,0.0032683243,0.05710303,-0.0075920997,-0.024471117,0.02763374,0.008881436,0.03791633,-0.0712116,0.00017360463,-0.004528823,0.07595923,0.053996056,0.045801193,-0.0062199137,0.010804299,0.012359943,0.026254196,0.022699144,0.01758326,0.047132034,0.01679124,-0.02906078,-0.017547593,0.024492754,0.021035993,0.025982384,0.045403987,-0.00942527,-0.050941046,0.038876783,-0.0025698708,-0.05376222,0.05076467,-0.00288438,-0.045506008,0.001406896,-0.029967414,-0.046459828,-0.019407477,-0.022669228,-0.0013480354,0.038119238,-0.011126338,-0.057271175,-0.016905963,-0.008312019,0.024756504,-0.04573651,-0.056743395,0.029235575,-0.019932121,1.7227896e-05,0.0308019,-0.008341446,-0.01648209,0.08233178,-0.016856907,0.009174676,-0.040992416,-0.007830757,-0.0055963844,0.023166737,-0.020507323,-0.036467206,-0.006326821,-0.04402055,0.0073837903,0.021289818,0.011918664,0.03068872,-0.015041281,-0.02766821,-0.026910411,0.043285985,-0.049792312,-0.03334114,0.0071933805,0.01024677,0.026019083,-0.051486596,-0.017196115,-0.039957594,-0.015283619,0.021890057,-0.027358223,-0.05659734,0.04662205,-0.0024085622,-0.0028950004,-0.02057296,-1.8388952e-05,0.034081247,0.029078659,-0.080393575,0.0045095724,-0.060616422,0.008473417,0.0029582651,0.0236987,-0.059521243,0.03223956,0.048556287,0.010365106,-0.025440343,0.0116467085,0.043997005,-0.016358815,-0.035498828,-0.020855226,-0.042379063,0.00045795666,0.0026392182,0.028391184,-0.053085323,-0.003892372,0.011798877,0.035093013,0.012368219,-0.006110469,0.033561155,0.034349166,-0.016769346,0.000327792,0.013499993,0.07080447,0.049496382,0.03072073,-0.0072572106,0.033677742,-0.051412452,-0.024685461,-0.05394645,-0.047091126,0.029176231,0.019330584,-0.05472207,-0.08050508,0.02808505,0.011066279,-0.0053963205,0.05397672,0.018103901,-0.06441245,-0.0016502221,-0.008531887,-0.018857792,-0.0026692383,0.062756,-0.04419421,0.019883957,-0.0033686531,-0.008469204,-0.03777101,0.08146697,-0.02320528,-0.09442676,0.031315636,0.0032013752,-0.007808433,-0.034684062,0.012481294,-0.048771642,-0.030621586,0.050426655,-0.024369182,0.034615226,-0.021829203,-0.009540962,-0.008376806,0.12863551,0.078820065,-0.012243465,-0.009116918,-0.024071947,0.01564715,-0.0025921548,0.03020844,0.008299007,-0.023967506,-0.038862914,-0.045608275,0.019055624,-0.011007076,-0.02905783,-0.0021113139,0.013372694,0.12657209,-0.0341949,0.0057281265,-0.021907207,-0.0075139455,0.01190494,0.019771839,0.0011024176,-0.02343405,-0.059399188,0.053285502,0.00408905,0.0038982786,0.01711845,0.029178323,0.020438999,0.015413978,-0.058549553,0.09130692,-0.047627736,0.006512581,0.053167693,-0.010094927,0.02392096,0.03605061,-0.01511313,0.012254926,-0.029973056,-0.016108623,-0.061001644,0.001040244,0.030367231,-0.014656696,-0.011183784,0.018916398,-0.017699294,-0.034412257,0.036998585,-0.04224056,0.014154537,-0.03555132,-0.023307277,-0.058306787,-0.011314358,-0.002991394,0.025251854,-0.017901853,0.008081247,-0.014430818,-0.013987829,-0.027697118,-0.013678009,-0.021603022,-0.03407061,-0.019649869,-0.03538189,0.01790677,0.013394896,-0.033918325,-0.014391479,-0.06309456,-0.021853473,-0.04754503,-0.03446598,0.030996518,0.018194746,-0.010521239,-0.02383946,0.010491202,0.046905246,-0.03751502,0.048045225,0.087051146,0.023907416,-0.005017523,-0.017732186,0.011875386,0.046529014,0.049393978,-0.011724188,-0.023222048,0.018964581,-0.05821277,-0.012777141,0.028874038,0.01240967,0.08943002,0.019526122,-0.05918669,0.04465626,0.000740973,-0.032210577,0.008671465,0.008108776,0.042620495,-0.01393185,0.01619955,-0.016851332,-0.03201696,-0.03499121,0.0563078,0.025396915,-0.063982725,0.0472541,-0.0043831053,-0.040724006,0.0050735837,-0.011225434,0.0071771964,-0.0008527175,0.0048507657,0.016384378,-0.045731142,0.027649112,0.026469154,0.04059435,0.058729053,0.023300542,-0.027087098,-0.0011466979,0.027696775,0.02009229,0.0149125075,-0.02617243,0.05140533,0.025996367,0.040807713,-0.080195025,0.0550296,-0.0014671385,-0.0051118038,-0.03201881,-0.06425778,0.04318686,-0.061910406,-0.005476348,-0.009540312,-0.013554619,-0.10087997,0.021685028,-0.01565892,-0.043991197,-0.027666453,0.0167236,-0.009948667,0.0033506015,0.007194369,-0.017340457,-0.01356896,0.022106847,-0.03508413,-0.05148414,-0.014009919,0.024618587,0.03726091,-0.0064128647,-0.0013933614,0.023317175,0.04568559,0.038411327,0.021510681,-0.037113328,-0.019208785,-0.005702013,0.010667512,0.006995129,-0.034221556,0.06735042,0.01950867,-0.03478178,-0.042750504,0.051494535,-0.038311414,-0.015165165,0.033123467,0.0089217555,-0.028657936,-0.0049055144,-0.031303108,0.013321557,-0.04081237,0.03086169,-0.043419193,0.014462177,-0.012677973,0.050200954,0.0014343848,-0.0039187116,0.01618985,0.013281627,0.028464593,-0.0010655489,-0.0051113907,-0.0013128903,-0.0072927685,-0.009257257,0.042827856,0.037645787,-0.000601785,-0.025774352,-0.03502616,0.020299619,-0.046638962,0.018285422,-0.026301332,-0.005829546,0.0052230745,0.015294286,0.053653196,0.037221376,0.08335971,-0.09524181,0.07961766,-0.012836796,-0.014822965,-0.020862523,-0.045096535,-0.049780868,0.017352864,-0.028695157,-0.038890626,-0.011825611,-0.03200205,0.011508655,0.023687823,0.03405418,0.02149832,-0.032372735,-0.0071896766,0.009437493,-0.02492948,0.03264038,-0.021081317,-0.015550473,-0.030598322,0.00086932356,-0.0075158468,-0.004439381,0.046876986,-0.05219872,0.019079521,0.030540973,-0.03195038,-0.055970494,0.0059901006,-0.002375294,0.001964898,0.02373638,0.0059727207,0.04521187,0.034106128,0.048924606,-0.030903172,-0.023458011,0.0009400413,0.004917835,-0.035799384,-0.016350526,0.033761125,0.05779154,0.0058664605,0.0026433875,0.02627916,-0.068958804,0.040353563,0.054143917,0.057732686,-0.019079434,-0.008438957,0.016420968,-0.035231173,-0.02026473,0.02179946,-0.041656233,0.02236696,0.018915351,0.040199764,0.015226479,-0.008986832,0.046246536,0.033844393,0.034927506,-0.023548713,0.045645215,0.024700094,0.05967633,0.04501042,-0.024177676,0.038995575,-0.015056647,0.015109853,-0.024868835,0.017157348,-0.0072760084,-0.008481708,0.024372714,-0.03666624,-0.07414735,0.03293489,-0.017828038,-0.008895579,0.04780936,0.037349164,0.029137528,0.03664534,0.0022314063,0.013621106,-0.04240391,0.020666283,-0.016323414,0.031713523,0.010186955,-0.018426402,-0.020671878,-0.020182095]	http://localhost:3001/help/user/group/custom_project_templates	# Custom group-level project templates **(PREMIUM ALL)**\\n\\n> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/6861) in GitLab 11.6.\\n\\nWhen you create a project, you can [choose from a list of templates](../project/index.md).\\nThese templates, for things like GitLab Pages or Ruby, populate the new project with a copy of the files contained in the\\ntemplate. This information is identical to the information used by [GitLab project import/export](../project/settings/import_export.md)\\nand can help you start a new project more quickly.\\n\\nYou can [customize the list](../project/index.md) of available templates, so\\nthat all projects in your group have the same list. To do this, you populate a subgroup with the projects you want to\\nuse as templates.\\n\\nYou can also configure [custom templates for the instance](../../administration/custom_project_templates.md).\\n\\n## Set up group-level project templates\\n\\nPrerequisite:\\n\\n- You must have the Owner role for the group.\\n\\nTo set up custom project templates in a group, add the subgroup that contains the\\nproject templates to the group settings:\\n\\n1. In the group, create a [subgroup](subgroups/index.md).\\n1. [Add projects to the new subgroup](index.md#add-projects-to-a-group) as your templates.\\n1. In the left menu for the group, select **Settings > General**.\\n1. Expand **Custom project templates** and select the subgroup.\\n\\nThe next time a group member creates a project, they can select any of the projects in the subgroup.\\n	{"info": "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments", "group": "Source Code", "stage": "Create", "title": "Custom group-level project templates", "source": "/doc/user/group/custom_project_templates.md", "source_type": "doc"}
diff --git a/spec/frontend/invite_members/components/invite_members_modal_spec.js b/spec/frontend/invite_members/components/invite_members_modal_spec.js
index 0d795fad67e87e1452722659c1c6d7d898dd5998..a654eae1c0a7aff867463163bfbc8de2dea1f24f 100644
--- a/spec/frontend/invite_members/components/invite_members_modal_spec.js
+++ b/spec/frontend/invite_members/components/invite_members_modal_spec.js
@@ -189,7 +189,7 @@ describe('InviteMembersModal', () => {
         createInviteMembersToProjectWrapper();
 
         expect(findBase().props('accessExpirationHelpLink')).toBe(
-          helpPagePath('user/project/members/index', { anchor: 'add-users-to-a-project' }),
+          helpPagePath('user/project/members/_index', { anchor: 'add-users-to-a-project' }),
         );
       });
     });
diff --git a/spec/graphql/types/project_type_spec.rb b/spec/graphql/types/project_type_spec.rb
index db2616b3985fee51b7499192476f0765334f854a..2925fced926ae0adec8921f9a3e6a417afbd9866 100644
--- a/spec/graphql/types/project_type_spec.rb
+++ b/spec/graphql/types/project_type_spec.rb
@@ -302,7 +302,7 @@
       it 'raises an error' do
         expect(subject['errors'][0]['message']).to eq(
           'You must <a target="_blank" rel="noopener noreferrer" ' \
-            'href="http://localhost/help/user/project/repository/index.md#' \
+            'href="http://localhost/help/user/project/repository/_index.md#' \
             'add-files-to-a-repository">add at least one file to the ' \
             'repository</a> before using Security features.'
         )
diff --git a/spec/services/security/ci_configuration/sast_create_service_spec.rb b/spec/services/security/ci_configuration/sast_create_service_spec.rb
index 555902fd77c6df9edfbae78b2af4077e08fd6d54..aad61dc1b9981e6f5b1890448ae5f1d909a975b7 100644
--- a/spec/services/security/ci_configuration/sast_create_service_spec.rb
+++ b/spec/services/security/ci_configuration/sast_create_service_spec.rb
@@ -49,7 +49,7 @@
         expect(result).to be_kind_of(ServiceResponse)
         expect(result.status).to eq(:error)
         expect(result.message).to eq('You must <a target="_blank" rel="noopener noreferrer" ' \
-                                     'href="http://localhost/help/user/project/repository/index.md#' \
+                                     'href="http://localhost/help/user/project/repository/_index.md#' \
                                      'add-files-to-a-repository">add at least one file to the ' \
                                      'repository</a> before using Security features.')
       end
diff --git a/spec/support/shared_examples/services/security/ci_configuration/create_service_shared_examples.rb b/spec/support/shared_examples/services/security/ci_configuration/create_service_shared_examples.rb
index 31811527259bd89b7515f5845270b84d38eb99b8..16c828c72fe4825eb1d2622728c341d3c81fa9a3 100644
--- a/spec/support/shared_examples/services/security/ci_configuration/create_service_shared_examples.rb
+++ b/spec/support/shared_examples/services/security/ci_configuration/create_service_shared_examples.rb
@@ -178,7 +178,7 @@
           expect(result).to be_kind_of(ServiceResponse)
           expect(result.status).to eq(:error)
           expect(result.message).to eq('You must <a target="_blank" rel="noopener noreferrer" ' \
-                                       'href="http://localhost/help/user/project/repository/index.md' \
+                                       'href="http://localhost/help/user/project/repository/_index.md' \
                                        '#add-files-to-a-repository">add at least one file to the repository' \
                                        '</a> before using Security features.')
         end