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
2022-10-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-10-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-04-01Add frozen_string_literal to spec/workersThong Kuah
Adds `# frozen_string_literal: true` to spec/workers ruby files
2019-02-06Clean up Shell.fork_repositoryStan Hu
Use project models instead of a list of parameters.
2019-02-06Send project name with Gitaly repository requestsStan Hu
When hashed storage is in use, it's helpful to have the project name associated with the request. Closes https://gitlab.com/gitlab-org/gitaly/issues/1394
2018-10-19Remove the `ForkedProjectLink` modelBob Van Landuyt
This removes the `ForkedProjectLink` model that has been replaced by the `ForkNetworkMember` and `ForkNetwork` combination. All existing relations have been adjusted to use these new models. The `forked_project_link` table has been dropped. The "Forks" count on the admin dashboard has been updated to count all `ForkNetworkMember` rows and deduct the number of `ForkNetwork` rows. This is because now the "root-project" of a fork network also has a `ForkNetworkMember` row. This count could become inaccurate when the root of a fork network is deleted.
2018-06-19Move forking to GitalyZeger-Jan van de Weg
Closes https://gitlab.com/gitlab-org/gitaly/issues/817 Closes https://gitlab.com/gitlab-org/gitaly/issues/1236
2018-06-12Merge branch 'gitaly-disk-access-3' into 'master'Douwe Maan
Find and mark more Git disk access locations, part 2 See merge request gitlab-org/gitlab-ce!19437
2018-06-12Find and mark more Git disk access locations, part 2Jacob Vosmaer
2018-06-11Work around limitations of expect_any_instance_of by stubbing Project.findStan Hu
2018-04-03Use shard name in Git::GitlabProjects instead of shard pathAhmad Sherif
Closes gitaly#1110
2018-02-07Use hashed storage in the specsNick Thomas
2018-01-15Fork now protects default branch on completionTiago Botelho
2017-12-15Fork and Import jobs only get marked as failed when the number of Sidekiq ↵Tiago Botelho
retries were exhausted
2017-12-04Fix the fork project functionality for projects with hashed storageNick Thomas
Note the dependency on gitlab-shell v5.10.0
2017-10-10Backports EE 38771 changes to CE.Tiago Botelho
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-06backports changed import logic from pull mirroring feature into CETiago Botelho
2017-05-01Auto-correct `RSpec/DescribedClass` violationsRobert Speicher
2017-03-28Use `:empty_project` where possible in worker specsRobert Speicher
2017-02-24Use Namespace#full_path instead of #path where appropriateDouwe Maan
2016-07-27Fix a bug where forking a project from a repository storage to another would ↵Alejandro Rodríguez
fail
2016-06-30Refactor repository paths handling to allow multiple git mount pointsAlejandro Rodríguez
2016-03-19Cache output of Repository#exists?Yorick Peterse
This caches the output of Repository#exists? in Redis while making sure it's flushed properly when creating new repositories, deleting them, etc. For the ProjectWiki tests to work I had to make ProjectWiki#create_repo! public as testing private methods in RSpec is a bit of a pain.
2016-02-17Expire caches after forking/importing a repositoryYorick Peterse
This ensures the caches for Repository#empty? and Repository#has_visible_content? are flushed after a repository has been imported or forked. Fixes gitlab-org/gitlab-ce#13505
2015-12-15Fixed Rubocop offensesGabriel Mazetto
2015-11-18Fix specsDouwe Maan
2015-09-11Import forked repositories asynchronously to prevent large repositories from ↵Stan Hu
timing out Use import_status to track async import status and give feedback to the user Closes #2388 Closes #2400