summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Process at most 4 pipelines during pushlimit-amount-of-created-pipelinesKamil Trzciński2019-04-101-0/+9
| | | | | | | | This adds a limitation that we will try to create pipeline for at most 4 first changes (branches and tags). This does not affect processing of Pipelines for Merge Requests, as each updated MR will have associated pipeline created.
* Merge branch 'patch-49' into 'master'Achilleas Pipinellis2019-04-101-1/+1
|\ | | | | | | | | Correct spelling mistake in documentation See merge request gitlab-org/gitlab-ce!26795
| * Correct spelling mistake in documentationChris Rose2019-03-301-1/+1
| |
* | Adds details about adding links to external accounts. Fixes #54884.knod2019-04-101-0/+11
| |
* | Merge branch 'docs/AuthorizedKeysCommand-by-default-in-Docker' into 'master'Achilleas Pipinellis2019-04-101-0/+3
|\ \ | | | | | | | | | | | | Documentation for AuthorizedKeysCommand enabled by default in Docker See merge request gitlab-org/gitlab-ce!27184
| * | Documentation for omnibus-gitlab!3191Sebastian Schweizer2019-04-091-0/+3
| | |
* | | Merge branch 'docs/add-runner-token-reset' into 'master'Evan Read2019-04-101-7/+47
|\ \ \ | | | | | | | | | | | | | | | | Add guide on how to reset runners token See merge request gitlab-org/gitlab-ce!26829
| * | | Add guide on how to reset runners tokenSteve Azzopardi2019-04-101-7/+47
| | | |
* | | | 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.
* | | | Update broken links to new destinationsEvan Read2019-04-103-9/+5
| | | |
* | | | Update housekeeping docs to match UIGreg Myers2019-04-102-1/+1
| | | | | | | | | | | | | | | | Correct screenshot and menu location on housekeeping docs
* | | | Merge branch 'docs-60290-docs-lint-broken-in-master' into 'master'50130-cluster-cluster-details-update-automatically-after-cluster-is-createdAchilleas Pipinellis2019-04-095-0/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Change mode to 644 for doc/ci/variables/img/ See merge request gitlab-org/gitlab-ce!27179
| * | | | Change mode to 644 for doc/ci/variables/img/docs-60290-docs-lint-broken-in-masterRémy Coutable2019-04-095-0/+0
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | 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 'docs-zj-update-n-plus-one-comments' into 'master'Douglas Barbosa Alexandre2019-04-091-1/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Update comments about N + 1 Gitaly calls See merge request gitlab-org/gitlab-ce!27178
| * | | Update comments about N + 1 Gitaly callsZeger-Jan van de Weg2019-04-091-1/+1
| |/ / | | | | | | | | | | | | To make sure all known issues are linked to the correct epic, I've gone through the code base, and updated the comments where required.
* | | Merge branch 'patch-50' into 'master'Marcia Ramos2019-04-091-3/+3
|\ \ \ | | | | | | | | | | | | | | | | Fix grammar and try to make clearer how a fork works See merge request gitlab-org/gitlab-ce!26929
| * | | Fix grammar and try to make clearer how a fork worksmlncn2019-04-031-3/+3
| | | |
* | | | 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
| |/ / /
* | | | Add new permission model `read-pipeline-variable`Agustin Henze2019-04-091-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Used to get the variables via the API endpoint `/projects/:id/pipelines/:pipeline_id/variables` Signed-off-by: Agustin Henze <tin@redhat.com>
* | | | 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-097-11/+11
| | | | | |
* | | | | | Use US English for contentEvan Read2019-04-092-6/+6
| | | | | |
* | | | | | Fix code block not renderingEvan Read2019-04-091-13/+14
| | | | | |
* | | | | | Merge branch 'more-consistent-namespacing-vuex-example-code' into 'master'Filipa Lacerda2019-04-091-2/+2
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | Use RECEIVE namespace rather than REQUEST See merge request gitlab-org/gitlab-ce!27130
| * | | | | Use RECEIVE namespace rather than REQUESTmore-consistent-namespacing-vuex-example-codeMark Florian2019-04-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | This brings the mutation type name closer to the associated action, so the documented example is more consistent.
* | | | | | Fix page specific JavaScript link in documentationMark Florian2019-04-091-3/+3
| | | | | |
* | | | | | Update auth with registry docsEvan Read2019-04-091-17/+18
| | | | | |
* | | | | | Add new API endpoint to expose single environmentKrasimir Angelov2019-04-091-0/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is resolving https://gitlab.com/gitlab-org/gitlab-ce/issues/30157. Implement new API endpoint `/projects/:id/environments/:environment_id` to expose single environment. Include information for environment's last deployment if there is one.
* | | | | | 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
| |/ / / / /
* | | | | | Docs: Update predefined_variables.md to fix anchorMarcel Amirault2019-04-091-1/+1
| | | | | |
* | | | | | Update Okta configuration notesBlair Lunceford2019-04-091-1/+6
| |/ / / / |/| | | |
* | | | | Refactor Issues docMike Lewis2019-04-082-133/+98
| | | | |
* | | | | Merge branch 'winh-IS_GITLAB_EE-docs' into 'master'Mike Greiling2019-04-081-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Document IS_GITLAB_EE environment variable Closes #60131 See merge request gitlab-org/gitlab-ce!27120
| * | | | | Document IS_GITLAB_EE environment variablewinh-IS_GITLAB_EE-docsWinnie Hellmann2019-04-081-0/+5
| | | | | |
* | | | | | Edits to documentation dev doc indexMike Lewis2019-04-082-32/+23
| | | | | |
* | | | | | 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
| | | | | | |
* | | | | | | Improvements to Documentation style and structure informationMike Lewis2019-04-081-24/+26
| |_|/ / / / |/| | | | |
* | | | | | Merge branch 'document-approach-for-handling-big-repositories' into 'master'Achilleas Pipinellis2019-04-082-0/+236
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add useful tips about big repositories See merge request gitlab-org/gitlab-ce!27005
| * | | | | | Add usefull tips about big repositoriesdocument-approach-for-handling-big-repositoriesKamil Trzciński2019-04-082-0/+236
| | | | | | |
* | | | | | | Docs: Fix anchors related to variables docMarcel Amirault2019-04-0817-34/+26
| |_|/ / / / |/| | | | |
* | | | | | Merge branch 'docs-update-rspec-set-usage' into 'master'Rémy Coutable2019-04-081-2/+4
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | Add doc when rspec-set won't work See merge request gitlab-org/gitlab-ce!27050