Commit ecdc4d4b authored by Marcel Amirault's avatar Marcel Amirault

Update links to moved workflow docs

Make sure all moved docs have proper links to
them in higher level indexes
parent 3d3d2457
...@@ -11,6 +11,7 @@ tutorials, technical overviews, blog posts) and videos. ...@@ -11,6 +11,7 @@ tutorials, technical overviews, blog posts) and videos.
- [Authentication](authentication/index.md) - [Authentication](authentication/index.md)
- [Continuous Integration (GitLab CI)](../ci/README.md) - [Continuous Integration (GitLab CI)](../ci/README.md)
- [Git](git/index.md) - [Git](git/index.md)
- [GitLab Flow](gitlab_flow.md)
- [GitLab Installation](../install/README.md) - [GitLab Installation](../install/README.md)
- [GitLab Pages](../user/project/pages/index.md) - [GitLab Pages](../user/project/pages/index.md)
......
...@@ -53,7 +53,7 @@ From there, you can: ...@@ -53,7 +53,7 @@ From there, you can:
[use GitLab as an OAuth provider](../../integration/oauth_provider.md#introduction-to-oauth) [use GitLab as an OAuth provider](../../integration/oauth_provider.md#introduction-to-oauth)
- Manage [personal access tokens](personal_access_tokens.md) to access your account via API and authorized applications - Manage [personal access tokens](personal_access_tokens.md) to access your account via API and authorized applications
- Add and delete emails linked to your account - Add and delete emails linked to your account
- Choose which email to use for notifications, web-based commits, and display on your public profile - Choose which email to use for [notifications](notifications.md), web-based commits, and display on your public profile
- Manage [SSH keys](../../ssh/README.md) to access your account via SSH - Manage [SSH keys](../../ssh/README.md) to access your account via SSH
- Manage your [preferences](preferences.md#syntax-highlighting-theme) - Manage your [preferences](preferences.md#syntax-highlighting-theme)
to customize your own GitLab experience to customize your own GitLab experience
......
...@@ -26,6 +26,7 @@ When you create a project in GitLab, you'll have access to a large number of ...@@ -26,6 +26,7 @@ When you create a project in GitLab, you'll have access to a large number of
from messing with history or pushing code without review from messing with history or pushing code without review
- [Protected tags](protected_tags.md): Control over who has - [Protected tags](protected_tags.md): Control over who has
permission to create tags, and prevent accidental update or deletion permission to create tags, and prevent accidental update or deletion
- [Repository mirroring](repository/repository_mirroring.md)
- [Signing commits](gpg_signed_commits/index.md): use GPG to sign your commits - [Signing commits](gpg_signed_commits/index.md): use GPG to sign your commits
- [Deploy tokens](deploy_tokens/index.md): Manage project-based deploy tokens that allow permanent access to the repository and Container Registry. - [Deploy tokens](deploy_tokens/index.md): Manage project-based deploy tokens that allow permanent access to the repository and Container Registry.
- [Web IDE](web_ide/index.md) - [Web IDE](web_ide/index.md)
......
...@@ -109,7 +109,7 @@ from which you can select **Create new label**. ...@@ -109,7 +109,7 @@ from which you can select **Create new label**.
#### 9. Weight **(STARTER)** #### 9. Weight **(STARTER)**
[Assign a weight](../../../workflow/issue_weight.md) to an issue. [Assign a weight](issue_weight.md) to an issue.
Larger values are used to indicate more effort is required to complete the issue. Only Larger values are used to indicate more effort is required to complete the issue. Only
positive values or zero are allowed. positive values or zero are allowed.
......
...@@ -18,4 +18,4 @@ in the issues page next to a distinctive balance scale icon. ...@@ -18,4 +18,4 @@ in the issues page next to a distinctive balance scale icon.
As an added bonus, you can see the total sum of all issues on the milestone page. As an added bonus, you can see the total sum of all issues on the milestone page.
![issue page](/img/issue_weight.png) ![issue page](img/issue_weight.png)
...@@ -77,6 +77,26 @@ following modal window will be then displayed, from which you can select **New r ...@@ -77,6 +77,26 @@ following modal window will be then displayed, from which you can select **New r
![Custom notification - New release](img/custom_notifications_new_release_v12_4.png) ![Custom notification - New release](img/custom_notifications_new_release_v12_4.png)
## Add release notes to Git tags
You can add release notes to any Git tag using the notes feature. Release notes
behave like any other markdown form in GitLab so you can write text and
drag-n-drop files to it. Release notes are stored in GitLab's database.
There are several ways to add release notes:
- In the interface, when you create a new Git tag
- In the interface, by adding a note to an existing Git tag
- Using the GitLab API
### New tag page with release notes text area
![new_tag](img/new_tag.png)
### Tags page with button to add or edit release notes for existing Git tag
![tags](img/tags.png)
<!-- ## Troubleshooting <!-- ## Troubleshooting
Include any troubleshooting steps that you can foresee. If you know beforehand what issues Include any troubleshooting steps that you can foresee. If you know beforehand what issues
......
# Releases
NOTE: In GitLab 11.7, we introduced the full fledged [Releases](index.md)
feature. You can still create release notes on this page, but the new method is preferred.
You can add release notes to any Git tag using the notes feature. Release notes
behave like any other markdown form in GitLab so you can write text and
drag-n-drop files to it. Release notes are stored in GitLab's database.
There are several ways to add release notes:
- In the interface, when you create a new Git tag
- In the interface, by adding a note to an existing Git tag
- Using the GitLab API
## New tag page with release notes text area
![new_tag](img/new_tag.png)
## Tags page with button to add or edit release notes for existing Git tag
![tags](img/tags.png)
...@@ -32,7 +32,7 @@ comments: false ...@@ -32,7 +32,7 @@ comments: false
- [Sharing projects with groups](../user/project/members/share_project_with_groups.md) - [Sharing projects with groups](../user/project/members/share_project_with_groups.md)
- [Time tracking](time_tracking.md) - [Time tracking](time_tracking.md)
- [Web Editor](../user/project/repository/web_editor.md) - [Web Editor](../user/project/repository/web_editor.md)
- [Releases](../user/project/releases/releases.md) - [Releases](../user/project/releases/index.md#add-release-notes-to-git-tags)
- [Milestones](../user/project/milestones/index.md) - [Milestones](../user/project/milestones/index.md)
- [Merge Requests](../user/project/merge_requests/index.md) - [Merge Requests](../user/project/merge_requests/index.md)
- [Authorization for merge requests](../user/project/merge_requests/authorization_for_merge_requests.md) - [Authorization for merge requests](../user/project/merge_requests/authorization_for_merge_requests.md)
......
--- ---
redirect_to: '../user/project/releases/releases.md' redirect_to: '../user/project/releases/index.md#add-release-notes-to-git-tags'
--- ---
This document was moved to [another location](../user/project/releases/releases.md). This document was moved to [another location](../user/project/releases/index.md#add-release-notes-to-git-tags).
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment