Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-01-08Link highlighting of jon.doe@example.com swallowed the trailing backtick, ↵Adam Smith
destroying formatting.
2019-01-08Document new incoming email address formatBrett Walker
2019-01-08Merge branch 'doc-merge_base' into 'master'Evan Read
Fix doc for "Allow getting the merge base of multiple revisions" See merge request gitlab-org/gitlab-ce!24051
2019-01-08Merge branch '49231-import-issues-csv' into 'master'Douwe Maan
Import issues from CSV Closes #49231 See merge request gitlab-org/gitlab-ce!23532
2019-01-07Merge branch 'docs/avoid-redirected-geo-links' into 'master'Achilleas Pipinellis
Avoid redirected Geo links See merge request gitlab-org/gitlab-ce!24138
2019-01-07Merge branch '49056-auto-devops-secret-docs' into 'master'Marcia Ramos
Document Auto DevOps secret variables See merge request gitlab-org/gitlab-ce!23970
2019-01-07Remove release from body and add linksdanielgruesso
2019-01-07Update Releases documentationMarcia Ramos
2019-01-07Merge branch 'patch-37' into 'master'Marcia Ramos
[fix] correct typo in repo_by_url.md See merge request gitlab-org/gitlab-ce!24069
2019-01-07Merge branch 'docs/new-verbs-section-styleguide' into 'master'Marcia Ramos
Increase consistency of documentation suite with more guidance See merge request gitlab-org/gitlab-ce!22249
2019-01-07Apply suggestion to doc/topics/autodevops/index.mdThong Kuah
2019-01-07Apply suggestion to doc/ci/variables/README.mdThong Kuah
2019-01-07Merge branch 'include-project' into 'master'Grzegorz Bizon
Allow to include another project files Closes #53903 See merge request gitlab-org/gitlab-ce!24101
2019-01-07Allow to include files from another projectsKamil Trzciński
This adds `project:, file:, ref:` specification support.
2019-01-07Add API topic templateEvan Read
2019-01-07Implement some review commentsEvan Read
Also: - Slight restructure. - Some Markdown improvements.
2019-01-07Add new styleguide sections for verbsEvan Read
Also fixes spelling, and makes the Markdown style more consistent.
2019-01-07Add CSV Import documentationHeinrich Lee Yu
Document importing of CSVs with format information and sample data
2019-01-07Merge branch 'docs/autodevops-buildpacks' into 'master'Evan Read
Clarify needed app files for Auto Build to work Closes #45279 See merge request gitlab-org/gitlab-ce!23980
2019-01-07Merge branch 'docs/fake-token-no-more' into 'master'Evan Read
Do not use tokens that look like tokens in docs Closes #38064 See merge request gitlab-org/gitlab-ce!24044
2019-01-07Note that multiline variables are not supportedThong Kuah
2019-01-07Document Auto DevOps secret variablesThong Kuah
Cross link from GitLab CI variable doc too Add note about running pods and updating secrets without any code change
2019-01-06Merge branch 'kamil-refactor-ci-builds-v5' into 'master'Grzegorz Bizon
Use BuildMetadata to store build configuration in JSONB form See merge request gitlab-org/gitlab-ce!21499
2019-01-04Update serverless extension to ymldanielgruesso
2019-01-04Fixes broken linkMarcia Ramos
2019-01-04Merge branch 'docs/add-source-code-permissions' into 'master'Marcia Ramos
Add project code view permissions See merge request gitlab-org/gitlab-ce!24158
2019-01-04Merge branch 'feature/gb/expose-ci-api-url-variable' into 'master'Douwe Maan
Expose `CI_API_V4_URL` CI/CD variable Closes #54621 See merge request gitlab-org/gitlab-ce!23936
2019-01-04Add project code view permissionsCindy Pallares 🦉
2019-01-04Merge branch 'docs-fix-only-except-default' into 'master'Marcia Ramos
Improve documentation about only except default values Closes #55699 See merge request gitlab-org/gitlab-ce!24016
2019-01-04Merge branch 'include-templates' into 'master'Kamil Trzciński
Include templates Closes #53445 See merge request gitlab-org/gitlab-ce!23495
2019-01-04Add config_options|variables to BuildMetadataKamil Trzciński
These are data columns that store runtime configuration of build needed to execute it on runner and within pipeline. The definition of this data is that once used, and when no longer needed (due to retry capability) they can be freely removed. They use `jsonb` on PostgreSQL, and `text` on MySQL (due to lacking support for json datatype on old enough version).
2019-01-04Documentation for Release page MVCFilipa Lacerda - 🎄🎄 OOO - Back on January 7th - 🎄🎄
2019-01-04Allow to include templatesKamil Trzciński
This rewrites a syntax to allow include of templates. This also normalises the syntax used by include: feature
2019-01-04Mark references to openshift template as deprecatedBalasankar "Balu" C
2019-01-04Merge branch '55853-deprecate-ci-autodeploy-quick_start_guide-html-docs' ↵Achilleas Pipinellis
into 'master' Deprecate Auto Deploy's quick start guide Closes #55853 See merge request gitlab-org/gitlab-ce!24096
2019-01-04Clarify needed app files for Auto Build to workAchilleas Pipinellis
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/45279
2019-01-04Replace look-alike token with '<your_access_token>'Achilleas Pipinellis
Replace all '9koXpg98eAheJpvBs5tK' occurrences with '<your_access_token>' in API docs.
2019-01-04Merge branch 'docs/rs-11-7-guides' into 'master'Achilleas Pipinellis
Installation/Update guides for 11.7 See merge request gitlab-org/gitlab-ce!24109
2019-01-04Avoid redirected Geo linksEvan Read
2019-01-04Make correction to URL, from https://about.gitab.com/handbook/documentation/ ↵carla
to https://about.gitlab.com/handbook/documentation/ (I searched to see if this is a duplicate of an existing fix, didn't find one)
2019-01-04Merge branch 'gt-update-inlcude-parameter-description' into 'master'Evan Read
Update `include` parameter usage description See merge request gitlab-org/gitlab-ce!24118
2019-01-03Drop Webhooks from project import/export configStan Hu
Webhook URLs were recently encrypted in the database via https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/21645, and as a result they are no longer exported. When an exported project with Webhooks is imported, the project import service will fail with `URI::InvalidURIError: bad URI(is not URI?)` due to a blank URL. We avoid this by disabling the export/import of Webhooks in the first place. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53513
2019-01-03Use reports syntax for Dependency scanning jobTetiana Chupryna
2019-01-03Add new docs for CI_API_V4_URL CI/CD variableGrzegorz Bizon
2019-01-03Update `include` parameter usage description [ci skip]George Tsiolis
2019-01-03Merge branch 'docs/add-requirements-for-auto-sast' into 'master'Achilleas Pipinellis
Add requirements for Auto SAST See merge request gitlab-org/gitlab-ce!24104
2019-01-03Merge branch '55860-use-OpenShift' into 'master'Kamil Trzciński
Use OpenShift in docs and Web UI instead of Openshift Closes #55860 See merge request gitlab-org/gitlab-ce!24097
2019-01-03Merge branch '55290-docs-update-link-to-updated-prometheus-url' into 'master'Kushal Pandya
docs: Fix links to Prometheus Metrics Library Closes #55290 See merge request gitlab-org/gitlab-ce!23790
2019-01-03Merge branch 'docs-remove-irrelevant-sentences-in-job-artifacts-md' into ↵Evan Read
'master' Remove outdated sentences from job_artifacts.md See merge request gitlab-org/gitlab-ce!24013
2019-01-03Merge branch '55836-docs-fix-navigation-style-in-docs' into 'master'Evan Read
Fix navigation style in docs Closes #55836 See merge request gitlab-org/gitlab-ce!24090