Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import.md « raketasks « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39b1a52a44d8aacc2c2a129e494e15bda79c1cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Import

### Import bare repositories into GitLab project instance

Notes:

* project owner will be a first admin
* groups will be created as needed
* group owner will be the first admin
* existing projects will be skipped

How to use:

1. copy your bare repos under git repos_path (see `config/gitlab.yml` gitlab_shell -> repos_path)
2. run the command below

```
# omnibus-gitlab
sudo gitlab-rake gitlab:import:repos

# installation from source or cookbook
bundle exec rake gitlab:import:repos RAILS_ENV=production
```

Example output:

```
Processing abcd.git
 * Created abcd (abcd.git)
Processing group/xyz.git
 * Created Group group (2)
 * Created xyz (group/xyz.git)
[...]
```