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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/gitlab/import.rake')
-rw-r--r--lib/tasks/gitlab/import.rake24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/tasks/gitlab/import.rake b/lib/tasks/gitlab/import.rake
deleted file mode 100644
index bf0ba40fb31..00000000000
--- a/lib/tasks/gitlab/import.rake
+++ /dev/null
@@ -1,24 +0,0 @@
-# frozen_string_literal: true
-
-namespace :gitlab do
- namespace :import do
- # How to use:
- #
- # 1. copy the bare repos to a specific path that contain the group or subgroups structure as folders
- # 2. run: bundle exec rake gitlab:import:repos[/path/to/repos] RAILS_ENV=production
- #
- # Notes:
- # * The project owner will set to the first administator of the system
- # * Existing projects will be skipped
- desc "GitLab | Import | Import bare repositories from repositories -> storages into GitLab project instance"
- task :repos, [:import_path] => :environment do |_t, args|
- unless args.import_path
- puts 'Please specify an import path that contains the repositories'.color(:red)
-
- exit 1
- end
-
- Gitlab::BareRepositoryImport::Importer.execute(args.import_path)
- end
- end
-end