- 10.09.2019 1 коммит
-
-
John Jarvis создал
-
- 06.09.2019 2 коммита
-
-
Christian Couder создал
-
Russell Dickenson создал
-
- 04.09.2019 1 коммит
-
-
Christian Couder создал
MergeRequests::PushOptionsHandlerService has been updated to allow adding and removing labels to a merge request using git push options. To create a new merge request and add 2 labels to it: git push -u origin -o merge_request.create \ -o merge_request.label="My label 1" \ -o merge_request.label="My label 2" To update an existing merge request and remove a label while adding a different label: git push -u origin -o merge_request.label="My added label" \ -o merge_request.unlabel="My removed label" Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
-
- 02.09.2019 1 коммит
-
-
- 28.08.2019 1 коммит
-
-
Achilleas Pipinellis создал
- New redirect doc/user/application_security/license_compliance/index.md - Renaming of images. - Some links that were pointing to the old location are fixed.
-
- 22.08.2019 1 коммит
-
-
Achilleas Pipinellis создал
As part of https://gitlab.com/gitlab-org/gitlab-ee/issues/8910, all occurrences of License Management are replace with License Compliance.
-
- 20.08.2019 1 коммит
-
-
Samantha Ming создал
-
- 15.08.2019 1 коммит
-
-
Christian Couder создал
-
- 14.08.2019 1 коммит
-
-
Christian Couder создал
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31068 forgot to add a short description of the new push options that it added.
-
- 13.08.2019 1 коммит
-
-
Philipp Hasper создал
-
- 08.08.2019 1 коммит
-
-
Nick Thomas создал
We're removing the ability for MRs in a single project to block each other, and performing a rename of the feature to go along with that. This necessitates documentation changes
-
- 24.07.2019 1 коммит
-
-
Christian Couder создал
MergeRequests::PushOptionsHandlerService has been updated to allow creating and updating merge requests with the `title` and `description` set using git push options. To create a new merge request and set its title and description: git push -u origin -o merge_request.create \ -o merge_request.title="My title" \ -o merge_request.description="My description" To update an existing merge request and set its title and description: git push -u origin -o merge_request.title="My title" \ -o merge_request.description="My description" Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
-
- 22.07.2019 1 коммит
-
-
- 19.07.2019 1 коммит
-
-
James Ramsay создал
-
- 18.07.2019 1 коммит
-
-
Patrick Bajao создал
Add a section in Confidential Issues documentation with information about the "Create confidential merge request" button/dropdown and how it can help in resolving confidential issues.
-
- 17.07.2019 1 коммит
-
-
Christian Couder создал
MergeRequests::PushOptionsHandlerService has been updated to allow creating and updating merge requests with the `remove_source_branch` set using git push options. To create a new merge request and set it to remove the source branch when it is merged: git push -u origin -o merge_request.create \ -o merge_request.remove_source_branch To update an existing merge request and set it to remove the source branch when it is merged: git push -u origin -o merge_request.remove_source_branch Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
-
- 15.07.2019 1 коммит
-
-
Michel Engelen создал
-
- 10.07.2019 1 коммит
-
-
Christian Couder создал
-
- 08.07.2019 1 коммит
-
-
Marcel Amirault создал
Previously, we used brackets to denote the tier badges, but this made Kramdown, the docs site Markdown renderer, show many warnings when building the site. This is now fixed by using parentheses instead of square brackets. This was caused by [PREMIUM] looking like a link to Kramdown, which couldn't find a URL there. See: - https://gitlab.com/gitlab-com/gitlab-docs/merge_requests/484 - https://gitlab.com/gitlab-org/gitlab-ce/issues/63800
-
- 04.07.2019 1 коммит
-
-
Marcel Amirault создал
After review, heading was changed and links to it needed to be updated, and minor tweaks to the issues docs such as note formatting
-
- 10.06.2019 1 коммит
-
-
Achilleas Pipinellis создал
- Edit pages under user/project/merge_requests and add the relevant types in the frontmatter. - Clean up descriptions. Based on https://gitlab.com/groups/gitlab-org/-/epics/1280
-
- 06.06.2019 1 коммит
-
-
- 31.05.2019 1 коммит
-
-
Marcel Amirault создал
-
- 29.05.2019 1 коммит
-
-
Elan Ruusamäe создал
-
- 20.05.2019 1 коммит
-
-
Achilleas Pipinellis создал
-
- 15.05.2019 1 коммит
-
-
Brett Walker создал
-
- 05.05.2019 1 коммит
-
-
Marcel Amirault создал
-
- 01.05.2019 1 коммит
-
-
- 09.04.2019 2 коммита
-
-
Luke Duncalfe создал
MergeRequests::PushOptionsHandlerService has been updated to allow creating and updating merge requests with the `merge_when_pipeline_succeeds` set using git push options. To create a new merge request and set it to merge when the pipeline succeeds: git push -u origin -o merge_request.create \ -o merge_request.merge_when_pipeline_succeeds To update an existing merge request and set it to merge when the pipeline succeeds: git push -u origin -o merge_request.merge_when_pipeline_succeeds Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/53198 -
Luke Duncalfe создал
To create a new merge request: git push -u origin -o merge_request.create To create a new merge request setting target branch: git push -u origin -o merge_request.create \ -o merge_request.target=123 To update an existing merge request with a new target branch: git push -u origin -o merge_request.target=123 A new Gitlab::PushOptions class handles parsing and validating the push options array. This can be the start of the standard of GitLab accepting push options that follow namespacing rules. Rules are discussed in issue https://gitlab.com/gitlab-org/gitlab-ce/issues/43263. E.g. these push options: -o merge_request.create -o merge_request.target=123 Become parsed as: { merge_request: { create: true, target: '123', } } And are fetched with the class via: push_options.get(:merge_request) push_options.get(:merge_request, :create) push_options.get(:merge_request, :target) A new MergeRequests::PushOptionsHandlerService takes the `merge_request` namespaced push options and handles creating and updating merge requests. Any errors encountered are passed to the existing `output` Hash in Api::Internal's `post_receive` endpoint, and passed to gitlab-shell where they're output to the user. Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/43263
-
- 04.04.2019 1 коммит
-
-
Rory O’Kane создал
-
- 27.03.2019 1 коммит
-
-
Marcel Amirault создал
-
- 06.02.2019 1 коммит
-
-
Evan Read создал
-
- 24.01.2019 1 коммит
-
-
Sam Bigelow создал
this is to match `git branch -D` from https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/23966 This just documents the change
-
- 21.01.2019 1 коммит
-
-
Marcia Ramos создал
-
- 17.01.2019 1 коммит
-
-
Achilleas Pipinellis создал
-
- 08.01.2019 2 коммита
-
-
-
Brett Walker создал
-
- 18.12.2018 1 коммит
-
-
Jacques Erasmus создал
-