summaryrefslogtreecommitdiff
path: root/doc/user/project
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'manual-sorting-12-2' into 'master'Evan Read2019-07-301-1/+1
|\ | | | | | | | | Correct manual sort introduction release See merge request gitlab-org/gitlab-ce!31135
| * Correct manual sort introduction releasemanual-sorting-12-2Sean McGivern2019-07-251-1/+1
| |
* | Changes to Repository docs for SSOT epicRussell Dickenson2019-07-296-69/+151
| | | | | | | | | | | | | | | | | | | | | | | | Content about Repository was edited to comply with docs standards. This is part of a SSOT epic. - Added standard elements to each file. - Moved content on Branches, and Compare, to the Branches file. - Added a brief introduction piece to the GPG content. - Lightly edited all content to improve clarity.
* | Make quick action "commands applied" banner more useful🙈 jacopo beschi 🙉2019-07-291-1/+2
| | | | | | | | | | Extends the quick actions "commands applied" banner to show the quick action preview text, but with everything in past tense.
* | Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqRobert Speicher2019-07-291-2/+1
|\ \
| * \ Merge branch 'security-remove-take-trigger-ownership-feature' into 'master'GitLab Release Tools Bot2019-07-261-2/+1
| |\ \ | | |/ | |/| | | | | | | | | | | | | Drop feature to take ownership of a trigger token Closes #2868 See merge request gitlab/gitlabhq!3198
| | * Drop feature to take ownership of a trigger tokenFabio Pitino2019-07-101-2/+1
| | | | | | | | | | | | | | | | | | | | | Removing API and frontend interactions that allowed users to take ownership of a trigger token. Removed mentions from the documentation.
* | | Fix deploy example and other fixesEvan Read2019-07-291-13/+18
| | |
* | | Add relevant Kubernetes pageSarah Daily2019-07-291-0/+4
| | |
* | | Docs: adere ssotMarcia Ramos2019-07-293-17/+61
| | |
* | | Docs: Pipelines - ssotMarcia Ramos2019-07-293-26/+69
| | |
* | | Merge branch 'docs-ssot-july-2' into 'master'Evan Read2019-07-291-0/+16
|\ \ \ | | | | | | | | | | | | | | | | Docs: Releases - ssot See merge request gitlab-org/gitlab-ce!31180
| * | | Releases doc - ssotdocs-ssot-july-2Marcia Ramos2019-07-261-0/+16
| | | |
* | | | Milestones docs - ssotdocs-ssot-julyMarcia Ramos2019-07-262-2/+34
|/ / /
* | | Add docs for template field in prometheus alertsSarah Yasonik2019-07-261-1/+2
| | |
* | | Update links to relativeMarcel Amirault2019-07-251-1/+0
| | | | | | | | | | | | | | | Following the single docs codebase change, all internal links should be relative. Also cleans up one table
* | | Add doc about incident issue labelsPeter Leitzen2019-07-251-0/+2
| | |
* | | Merge branch 'label-descr-push-opts' into 'master'Lin Jen-Shin2019-07-251-0/+24
|\ \ \ | | | | | | | | | | | | | | | | Support title and desc on merge w/ push option See merge request gitlab-org/gitlab-ce!31068
| * | | Support title and desc on merge w/ push optionlabel-descr-push-optsChristian Couder2019-07-241-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Update documentation for current stateEvan Read2019-07-252-35/+36
| | | |
* | | | Restructure project cluster topicEvan Read2019-07-253-204/+219
| |/ / |/| | | | | | | | | | | Also fixes links to section headings that have changed.
* | | Improve the Auto DevOps topic a bitEvan Read2019-07-241-1/+1
| | |
* | | Clean up headers in markdownMarcel Amirault2019-07-241-0/+1
| | | | | | | | | | | | | | | | | | | | | Some markdown headers needed tweaking to adhere to standards, including blank lines above and below, only one space after hash, first header should be h1, and only one h1 per doc
* | | Improve code quality documentationEvan Read2019-07-241-20/+59
| | |
* | | Merge branch '64243-design-management-docs' into 'master'Marcia Ramos2019-07-243-0/+64
|\ \ \ | | | | | | | | | | | | | | | | PerhAdd documentation for Design Management feature See merge request gitlab-org/gitlab-ce!30448
| * | | Add documentation for Design Management feature64243-design-management-docsLuke Duncalfe2019-07-193-0/+64
| | | | | | | | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/issues/64243
* | | | Cross link to kaniko docsEvan Read2019-07-241-4/+9
| | | | | | | | | | | | | | | | | | | | Also make security warning more visible and improves instructions.
* | | | CE port for Group bulk edit merge requestsEugenia Grieff2019-07-231-2/+2
| |/ / |/| | | | | | | | | | | | | | | | | Add bulk update sidebar to merge requests template Add js to toggle sidebar Fix bulk update button in issues template Add specs for merge requests in bulk update service
* | | Merge branch 'rm-src-branch' into 'master'Grzegorz Bizon2019-07-231-0/+14
|\ \ \ | | | | | | | | | | | | | | | | Support remove source branch on merge w/ push options See merge request gitlab-org/gitlab-ce!30728
| * | | Support rm src branch on merge w/ push optionChristian Couder2019-07-171-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Merge branch 'ce-9688-add-remove-blocking-mrs' into 'master'Sean McGivern2019-07-225-0/+149
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | CE backport of "Add or remove blocking merge requests" See merge request gitlab-org/gitlab-ce!30908
| * | | | Add documentation for blocking MRsce-9688-add-remove-blocking-mrsNick Thomas2019-07-225-0/+149
| | | | | | | | | | | | | | | | | | | | This feature needs to be documented, so here is the documentation
* | | | | Docs: add alert for bugs - Pages' LE integrationMarcia Ramos2019-07-221-2/+21
|/ / / /
* | | | OAuth2 support for GitLab personal access tokensSteve Abrams2019-07-221-13/+10
| | | | | | | | | | | | | | | | | | | | | | | | PATs are accepted using the OAuth2 compliant header "Authorization: Bearer {token}" in order to allow for OAuth requests while 2FA is enabled.
* | | | Fix unordered list spacingMarcel Amirault2019-07-228-55/+55
| | | | | | | | | | | | | | | | | | | | | | | | Correct the spacing of unordered markdown lists in docs, to maintain standards of documentation, in /user and others.
* | | | Link Metrics Reports from merge request docsJames Ramsay2019-07-191-0/+11
| | | |
* | | | Remove duplicate word in Issues feature pageRussell Dickenson2019-07-191-1/+1
| | | |
* | | | Set Private visibility for restricted Internal imported projectsGeorge Koltsov2019-07-191-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With https://gitlab.com/gitlab-org/gitlab-ee/issues/12388 change going live there is potential risk of breaking imports of 'Internal' projects. This change makes sure if 'Internal' visibility level is restricted all 'Internal' projects will be marked as 'Private' See: https://gitlab.com/gitlab-org/gitlab-ce/issues/64311
* | | | Add documentation for panel typesJose Ivan Vargas2019-07-193-1/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds documentation on how to add area and single stat panel types for the monitoring dashboards using custom yml files
* | | | Added mention of Quick actionsRussell Dickenson2019-07-181-1/+3
| | | |
* | | | Added mention of autocomplete charactersRussell Dickenson2019-07-181-0/+6
| | | |
* | | | Add documentation page for bulk editing group issue milestonesEugenia Grieff2019-07-181-8/+15
| | | | | | | | | | | | | | | | | | | | | | | | - Add new page to group docs for bulk editing issues - Add link to new section to group index - Amend bulk editing page at a project level to remove issues from note
* | | | Create documentation for the manual sorting / re-ordering capabilityBrett Walker2019-07-183-1/+36
| |/ / |/| |
* | | Doc: resolving confidential issues in private forkPatrick Bajao2019-07-184-0/+51
| | | | | | | | | | | | | | | | | | 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.
* | | Merge branch 'feature/gb/serverless-app-deployment-template' into 'master'Thong Kuah2019-07-181-21/+16
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Deploy serverless apps with `gitlabktl` Closes #64494 See merge request gitlab-org/gitlab-ce!30740
| * | | Update docs on serverless apps deploymentsGrzegorz Bizon2019-07-151-21/+16
| | | |
* | | | Set correct file mode for autocomplete imagesWinnie Hellmann2019-07-182-0/+0
| | | |
* | | | Add docs for Let's Encrypt integrationVladimir Shushlin2019-07-175-5/+87
| |/ / |/| | | | | | | | | | | | | | * Add deprecation warning to old integration * Add user docs * Add admin docs
* | | Documented autocomplete charactersRussell Dickenson2019-07-174-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Added a table listing all autocomplete characters. - Added a link to the autocomplete characters docs, from the Projects feature list. - Added an example of how autocomplete would behave for `Users and groups`, including two screenshots.
* | | Add tip about stripping ANSI color codesElliot Rushton2019-07-171-0/+16
| | |