summaryrefslogtreecommitdiff
path: root/doc/user
Commit message (Collapse)AuthorAgeFilesLines
* Adds details about adding links to external accounts. Fixes #54884.knod2019-04-101-0/+11
|
* Add more info logging to cluster appsDylan Griffith2019-04-101-1/+1
| | | | | Log events so that it's easy to see when different requests are starting.
* Mark unverified pages domains for removalVladimir Shushlin2019-04-091-0/+2
| | | | | | | Set pages_domain.remove_at when disabling it Add specs for marking pages domain for removal Notify user that domain is being removed Add documentation
* Merge branch 'master' into 'master'Marcia Ramos2019-04-091-1/+1
|\ | | | | | | | | add missing word in docs See merge request gitlab-org/gitlab-ce!26882
| * Fix typo in docschow892019-04-021-1/+1
| |
* | Merge branch 'documentation-bug-public-key-should-be-private-key' into 'master'Nick Thomas2019-04-091-1/+1
|\ \ | | | | | | | | | | | | docs public key -> private key See merge request gitlab-org/gitlab-ce!26902
| * | public key -> private keyJoan Queralt2019-04-031-1/+1
| | |
* | | Merge branch '43263-git-push-option-to-create-mr' into 'master'Nick Thomas2019-04-091-0/+58
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Git push options to create a merge request, set target_branch and set merge when pipeline succeeds Closes #53198 and #43263 See merge request gitlab-org/gitlab-ce!26752
| * | | Support merge on pipeline success w/ push optionsLuke Duncalfe2019-04-091-3/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | Support merge request create with push optionsLuke Duncalfe2019-04-091-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Docs: Add examples for linking to header IDsMarcel Amirault2019-04-091-19/+19
| | | |
* | | | Docs: Fix anchors related to issuesMarcel Amirault2019-04-096-9/+9
| | | |
* | | | Merge branch 'gitlab-managed-apps' into 'master'Evan Read2019-04-091-1/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Name GitLab managed apps See merge request gitlab-org/gitlab-ce!27129
| * | | Name GitLab managed appsgitlab-managed-appsSid Sijbrandij2019-04-081-1/+1
| | | |
* | | | Refactor Issues docMike Lewis2019-04-082-133/+98
| | | |
* | | | Merge branch 'patch-2' into 'master'Marcia Ramos2019-04-081-1/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Fix typo “settings” in Merge requests docs See merge request gitlab-org/gitlab-ce!27020
| * | | Fix typo “settings” in Merge requests docsRory O’Kane2019-04-041-1/+1
| | | |
* | | | Docs: Fix anchors related to variables docMarcel Amirault2019-04-082-2/+2
| | | |
* | | | Docs: Fix misc anchorsMarcel Amirault2019-04-081-1/+1
| | | |
* | | | Add Knative metrics to PrometheusChris Baumbauer2019-04-062-0/+20
| | | |
* | | | Add part of needed codeGosia Ksionek2019-04-051-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add columns to store project creation settings Add project creation level column in groups and default project creation column in application settings Remove obsolete line from schema Update migration with project_creation_level column existence check Rename migrations to avoid conflicts Update migration methods Update migration method
* | | | Merge branch 'feature/gb/serverless-switch-to-gitlabktl' into 'master'Kamil Trzciński2019-04-051-29/+46
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Serverless backend now uses `gitlabktl` tool Closes #56252 and #58058 See merge request gitlab-org/gitlab-ce!26926
| * | | | Copy-edit new serverless documentationfeature/gb/serverless-switch-to-gitlabktlGrzegorz Bizon2019-04-051-2/+2
| | | | |
| * | | | Fix indentation of exemplary serverless.yml configGrzegorz Bizon2019-04-031-23/+23
| | | | |
| * | | | Update GitLab Serverless documentation to use `gitlabktl`Grzegorz Bizon2019-04-031-25/+40
| | | | |
| * | | | Update serverless docs to use `gitlabktl`Grzegorz Bizon2019-04-031-7/+9
| | | | |
* | | | | Merge branch '54506-show-error-when-namespace-svc-missing' into 'master'Grzegorz Bizon2019-04-051-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | Show error when namespace/svc account missing Closes #54506 See merge request gitlab-org/gitlab-ce!26362
| * | | | Update error message54506-show-error-when-namespace-svc-missingjerasmus2019-04-031-1/+1
| | | | | | | | | | | | | | | | | | | | Updated the error message in the docs
* | | | | Fixed test specsOswaldo Ferreira2019-04-043-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | - added suggestions to mock data - fixed props to be not required
* | | | | Merge branch 'dz-reserve-v2-root-path' into 'master'Grzegorz Bizon2019-04-041-0/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add v2 to reserved top level routes See merge request gitlab-org/gitlab-ce!26540
| * | | | | Add v2 to reserved top level routesdz-reserve-v2-root-pathDmitriy Zaporozhets2019-04-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | Merge branch '24704-download-repository-path' into 'master'Kushal Pandya2019-04-042-0/+20
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Download a folder from repository Closes #24704 See merge request gitlab-org/gitlab-ce!26532
| * | | | | | Switch positions of source and directory sectionsPatrick Bajao2019-04-022-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated the documentation to match the updated order including the screenshot.
| * | | | | | Add documentation for download source code featurePatrick Bajao2019-04-022-0/+20
| | |_|_|_|/ | |/| | | |
* | | | | | Update "Pipelines must succeed" docs59979-update-documentation-about-only-allow-merge-requests-to-be-merged-if-the-pipeline-succeeds-to-take-into-account-the-settings-page-reorganizationNathan Friend2019-04-032-4/+4
| |/ / / / |/| | | | | | | | | | | | | | | | | | | This commit updates the documentation about the "Pipelines must succeed" checkbox.
* | | | | Fix code block and other minor fixesEvan Read2019-04-031-7/+6
| |_|/ / |/| | |
* | | | Resolve "Add troubleshooting section to capture errors with installing ↵Alexander Strachan2019-04-031-6/+23
| | | | | | | | | | | | | | | | applications to a Kubernetes cluster"
* | | | Merge branch ↵Sean McGivern2019-04-031-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '53459-quick-action-adds-multiple-labels-to-issue-if-middle-words-overlap-with-existing-label' into 'master' Resolve "Quick Action Adds Multiple Labels to Issue If Middle Words Overlap with Existing Label" Closes #53459 See merge request gitlab-org/gitlab-ce!26602
| * | | | Fix quick actions add label name middle word overlaps53459-quick-action-adds-multiple-labels-to-issue-if-middle-words-overlap-with-existing-labelJacopo2019-04-021-1/+1
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes quick actions add label when adding a label which name middle word overlaps with another label name: for example adding "A B C" when also label "B" exists. With the fix only the label "A B C" is correctly added, previously also the label "B" was added due to the middle word overlaps.
* | | | Merge branch 'patch-49' into 'master'Evan Read2019-04-031-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | remove html tag See merge request gitlab-org/gitlab-ce!26885
| * | | | remove html tagWilliam Chia2019-04-021-1/+1
| |/ / /
* | | | Merge branch 'fix-format-typo-two-factor-auth' into 'master'Evan Read2019-04-031-0/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Fix format typo on generate-new-recovery-codes-using-ssh See merge request gitlab-org/gitlab-ce!26819
| * | | Fix format typo on generate-new-recovery-codes-using-sshAgustin Henze2019-04-021-0/+1
| |/ / | | | | | | | | | | | | | | | | | | The rendering is broken and it's confusing when you are reading the doc about generate the recovery codes using ssh. Signed-off-by: Agustin Henze <tin@redhat.com>
* | | Docs: image realignmentMarcel Amirault2019-04-0225-0/+0
| | |
* | | Refactor and fix pipeline schedulesEvan Read2019-04-011-55/+66
|/ /
* | Clarify that personal access token should be sent as password for ↵Tim Hobbs2019-04-011-5/+2
| | | | | | | | authentication.
* | Docs review for MR 25586Evan Read2019-03-281-14/+12
|/
* Update U2F recommendations, fix #57656Mateusz Konieczny2019-03-281-3/+4
|
* Rename build to job in webhooks docsAchilleas Pipinellis2019-03-271-15/+15
|
* Expand and improve autofetch of endpoint sectionEvan Read2019-03-271-5/+11
|