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
2018-06-11Merge branch 'sh-github-importer-improve-error' into 'master'James Lopez
GitHub Rake importer: Fail with a clearer explanation if GitLab username is wrong See merge request gitlab-org/gitlab-ce!19653
2018-06-11GitHub Rake importer: Fail with a clearer explanation if GitLab username is ↵Stan Hu
wrong
2018-06-11Expire Wiki content cache after importing a repositoryStan Hu
The cache state for Wikis that were imported via GitHub or Bitbucket does not appear to have been flushed after a successful import. Closes #47546
2017-11-08Restore GH enterprise support in the Rake taskYorick Peterse
This restores GH enterprise support in the GH import Rake task.
2017-11-08Fix the GH importer Rake taskYorick Peterse
This task was broken in a few areas with the removal of the old GitHub importer code.
2017-11-08Replace old GH importer with the parallel importerYorick Peterse
2017-10-05Ensure the `import:github` task doesn't schedule an import jobRémy Coutable
The point of this task is to run the import in the foreground, so it shouldn't schedule an import job! Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-05Don't mark the import as finished if it wasn't successful in the ↵Rémy Coutable
`import:github` task Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-08-31`current_application_settings` belongs on `Gitlab::CurrentSettings`Sean McGivern
The initializers including this were doing so at the top level, so every object loaded after them had a `current_application_settings` method. However, if someone had rack-attack enabled (which was loaded before these initializers), it would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't have that method. To fix this: 1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need `Object.new.current_application_settings` to work. 2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it like that in several places. 3. Change the initializers to use that new form.
2017-08-23Migrate creation of nested groups into a serviceBob Van Landuyt
2017-08-07Fix small typoe on GitHub import rake taskDouglas Barbosa Alexandre
2017-08-07Use a custom root endpoint if defined on GH ominiauth provider settingsDouglas Barbosa Alexandre
2017-08-07Use project.import_url to fetch repositories from GithubDouglas Barbosa Alexandre
2017-06-06backports changed import logic from pull mirroring feature into CETiago Botelho
2017-04-26Add basic progress output to GitHub importDouglas Barbosa Alexandre
2017-04-26Fix undefined attribute params from import taskDouglas Barbosa Alexandre
2017-04-24Refactor rake task to to import GitHub repositoresDouglas Barbosa Alexandre
2017-04-18Does not remove the GitHub remote when importing from GitHubDouglas Barbosa Alexandre
2017-04-07Fix rake test to import Github repositoriesDouglas Barbosa Alexandre
2017-04-06Github import rake taskJames Lopez