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
AgeCommit message (Collapse)Author
2020-02-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-13update duplication of unicorn min environment variableRobin
2019-08-07Compress images with pngquantAchilleas Pipinellis
2019-08-05Expand markdown linting rules for docsMarcel Amirault
MD002 - First header should be level 1 MD006 - Start bullets at beginning of line MD019 - No multiple spaces after header style MD022 - Headers surrounded by blank lines MD025 - Only 1 level 1 header MD028 - No blank lines within blockquote MD038 - Spaces inside code span elements
2019-07-12Remove hard tabs from docsMarcel Amirault
Hard tabs do not follow general markdown guidelines are were removed from the few docs that used them
2019-07-10Fix whitespace in many administration docsMarcel Amirault
Many code blocks are 4spaced, and they render in GitLab without coloring as a result, even though they are fenced with a language label. If in a list, other items will render as being in a code block too, even if not meant to. This fixes all these issues for many admin docs (part 2)
2019-07-08Changing badges to use parentheses not bracketsMarcel Amirault
Previously, we used brackets to denote the tier badges, but this made Kramdown, the docs site Markdown renderer, show many warnings when building the site. This is now fixed by using parentheses instead of square brackets. This was caused by [PREMIUM] looking like a link to Kramdown, which couldn't find a URL there. See: - https://gitlab.com/gitlab-com/gitlab-docs/merge_requests/484 - https://gitlab.com/gitlab-org/gitlab-ce/issues/63800
2019-07-08Update redirected links in CE part 1Marcel Amirault
First MR in a series updating all redirected links in CE documentation to the destination URLs
2019-06-19Clean up the Sidekiq cluster docsAchilleas Pipinellis
More importantly: - Move the command line tips under a troubleshooting section - Add new section: "Ignore all GitHub import queues" - Add list of existing Sidekiq queues
2019-06-05Docs: Update all links to relative in /workflow and /administrationMarcel Amirault
2019-05-06Docs: Realigning scattered EE docs into CEMarcel Amirault
2019-05-05Docs: Merge EE doc/administration/operations to CEMarcel Amirault
2019-04-09Documentation for omnibus-gitlab!3191Sebastian Schweizer
2019-03-11Docs: Add automatic redirects to many moved filesMarcel Amirault
2019-03-04sidekiq: terminate child processes at shutdownNick Thomas
Sidekiq jobs frequently spawn long-lived child processes to do work. In some circumstances, these can be reparented to init when sidekiq is terminated, leading to duplication of work and strange concurrency problems. This commit changes sidekiq so that, if run as a process group leader, it will forward `INT` and `TERM` signals to the whole process group. If the memory killer is active, it will also use the process group when resorting to `kill -9` to shut down. These changes mean that a naive `kill <pid-of-sidekiq>` will now do the right thing, killing any child processes spawned by sidekiq, as long as the process supervisor placed it in its own process group. If sidekiq isn't a process group leader, this new code is skipped.
2019-02-22Ensure all lists are surrounded by new linesEvan Read
Markdown renderers find it easier to determine where lists start and end when lists are surrounded by new lines. For consistency, also ensure entries in the list are aligned when they span multipls lines.
2019-02-18Remove consecutive blank lines from markdown filesEvan Read
For the sake of consistency, removes any extraneous consecutive blank lines from the doc suite.
2019-02-08Add missing punctuationEvan Read
2019-02-08Include benchmarking with fioStan Hu
2019-02-08Improve NFS benchmarking doc to include read performance testStan Hu
2019-01-10Setting Unicorn Worker memory limit in gitlab.rbAbubakar Siddiq Ango
2018-12-13Update Filesystem Benchmarking to be more strictDrew Blessing
2018-11-13Resolve Markdown ordered lists not conforming to styleguideEvan Read
2018-10-10Add Filesystem Performance Benchmarking documentationDrew Blessing
Filesystem performance can have a big impact on overall GitLab performance, especially for actions that read or write Git repositories. This information will help benchmark filesystem performance against known good and bad real-world systems.
2018-10-04docs: moving repositories cleanupBen Bodenmiller
* use `git` user * formatting cleanup
2018-09-24Remove background job throttling featureValery Sizov
We remove this feature as it never worked properly
2018-09-21Correct grammar (setup to set-up) in DocsMarcel Amirault
2018-08-27Compress all PNG images under doc/Achilleas Pipinellis
The pngquant tool was used https://pngquant.org, and particularly, the following command: /usr/bin/pngquant -f --skip-if-larger --ext .png --speed 1 image.png Before: 47584K After : 34924K
2018-08-08Add ability suppress the global "You won't be able [use] SSH" messageÆvar Arnfjörð Bjarmason
This fixes gitlab-org/gitlab-ce#49953, as noted in the documentation this feature is intended to be used when SSH certificates are enabled. Then this warning becomes not only pointless, but also misleading. This builds on top of gitlab-org/gitlab-ce!21009 since both need to modify the same documentation, which avoids a merge conflict. See also the gitlab-org/gitlab-ce#49218 issue and associated merge request.
2018-08-06Fix typo and improve formattingJames Ramsay
2018-08-01Add support for SSH certificate authenticationÆvar Arnfjörð Bjarmason
Why and how to enable this is covered in the docs being changed here. This requires gitlab-org/gitlab-shell@2e8b670 ("Add support for SSH certificate authentication", 2018-06-14) which has been merged in and tagged as 8.0.0, so GITLAB_SHELL_VERSION needs to be bumped. Merging this closes gitlab-org/gitlab-ce#34572 see gitlab-org/gitlab-shell!207 for the gitlab-shell MR. Implementation notes: - The APIs being changed here are all internal, and their sole consumer is gitlab-shell. - Most of the changed code is a MR to gitlab-shell, see the gitlab-org/gitlab-shell!207 MR. That change covers why only some of the internal methods get a new "username" parameter, and why some others only get a "user_id".
2018-04-27Fixed typosPascal Borreli
2018-02-22Docs: search/replace "Enterprise Edition" and adjust when applicableMarcia Ramos
2018-02-11Remove double negativeBen Bodenmiller
2018-01-19Fix incorrect path for gitlab-shell authorized keys helperStan Hu
2018-01-18Add EE version and CE issue linkJames Ramsay
2018-01-18Add release added and release backported to CEJames Ramsay