summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* 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
| * | | Add doc when rspec-set won't workdocs-update-rspec-set-usageHeinrich Lee Yu2019-04-051-2/+4
| | | |
* | | | Update RegExp syntax link to RE2Cody Mize2019-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | CI ref pattern matching now uses RE2 instead of Ruby. See https://about.gitlab.com/2019/04/01/security-release-gitlab-11-dot-9-dot-4-released/ for more information.
* | | | Docs: Fix misc anchorsMarcel Amirault2019-04-083-4/+4
| | | |
* | | | Docs: Fix anchors related to environments docMarcel Amirault2019-04-087-10/+10
| | | |
* | | | Merge branch 'patch-49' into 'master'Evan Read2019-04-071-4/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | docs: fix artifacts folder path, according to GitLab CE 11.8.2 See merge request gitlab-org/gitlab-ce!26536
| * | | | docs: fix artifacts folder path, according to GitLab CE 11.8.2 jk2K2019-03-251-4/+4
| | | | |
* | | | | 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 'css-color-utils' into 'master'Clement Ho2019-04-051-1/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add color util classes for backgrounds and text See merge request gitlab-org/gitlab-ce!26898
| * | | | | | Add docs to mention new util classescss-color-utilsSimon Knox2019-04-051-1/+9
| | | | | | |
| * | | | | | Add color util classes for backgrounds and textSimon Knox2019-04-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have a range of shades for most of the theme colors Grouped them into color maps the same way Bootstrap does for $grays already Also add type scale utils
* | | | | | | Merge branch 'docs/point-to-new-chart-links' into 'master'Marcia Ramos2019-04-0512-931/+46
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Redirect Kubernetes installation to the charts docs Closes #58870 See merge request gitlab-org/gitlab-ce!26159
| * | | | | | Redirect Kubernetes installation to the charts docsdocs/point-to-new-chart-linksAchilleas Pipinellis2019-03-1912-931/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the advent of the new chart docs, we should deprecate the old ones and redirect them to the new ones.
* | | | | | | Docs for use combined merge refs with merge request pipelinesShinya Maeda2019-04-054-12/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | pdate
* | | | | | | Merge branch 'update-custom-build-dir-docs' into 'master'Achilleas Pipinellis2019-04-052-2/+98
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add documentation for custom build directories See merge request gitlab-org/gitlab-ce!20427
| * | | | | | | Add documentation for new big-repos featuresKamil Trzciński2019-04-052-2/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds documentation for: - `CI_BUILDS_DIR`, - `CI_CONCURRENT_ID`, - `CI_CONCURRENT_PROJECT_ID`, - `GIT_CLONE_PATH`, - `GIT_CLEAN_FLAGS`