2014-10-30 14:10:07 -04:00
|
|
|
# Import bare repositories into your GitLab instance
|
2014-04-30 09:02:37 -04:00
|
|
|
|
2014-10-31 07:51:25 -04:00
|
|
|
## Notes
|
2014-04-30 09:02:37 -04:00
|
|
|
|
2014-10-30 14:08:10 -04:00
|
|
|
- The owner of the project will be the first admin
|
|
|
|
- The groups will be created as needed
|
|
|
|
- The owner of the group will be the first admin
|
|
|
|
- Existing projects will be skipped
|
2014-04-30 09:02:37 -04:00
|
|
|
|
2014-10-31 07:51:25 -04:00
|
|
|
## How to use
|
2014-04-30 09:02:37 -04:00
|
|
|
|
2014-10-30 14:10:07 -04:00
|
|
|
### Create a new folder inside the git repositories path. This will be the name of the new group.
|
2014-10-29 18:21:55 -04:00
|
|
|
|
2014-10-30 18:36:25 -04:00
|
|
|
- For omnibus-gitlab, it is located at: `/var/opt/gitlab/git-data/repositories` by default, unless you changed
|
|
|
|
it in the `/etc/gitlab/gitlab.rb` file.
|
2015-02-16 12:10:07 -05:00
|
|
|
- For installations from source, it is usually located at: `/home/git/repositories` or you can see where
|
2014-10-30 18:36:25 -04:00
|
|
|
your repositories are located by looking at `config/gitlab.yml` under the `gitlab_shell => repos_path` entry.
|
2014-10-29 18:21:55 -04:00
|
|
|
|
2015-01-16 22:36:44 -05:00
|
|
|
New folder needs to have git user ownership and read/write/execute access for git user and its group:
|
|
|
|
|
|
|
|
```
|
2015-01-21 09:14:46 -05:00
|
|
|
sudo -u git mkdir /var/opt/gitlab/git-data/repositories/new_group
|
2015-01-16 22:36:44 -05:00
|
|
|
```
|
|
|
|
|
2015-01-26 11:03:04 -05:00
|
|
|
If you are using an installation from source, replace `/var/opt/gitlab/git-data`
|
|
|
|
with `/home/git`.
|
|
|
|
|
2014-10-30 14:14:31 -04:00
|
|
|
### Copy your bare repositories inside this newly created folder:
|
2014-04-30 09:02:37 -04:00
|
|
|
|
|
|
|
```
|
2015-01-21 09:14:46 -05:00
|
|
|
sudo cp -r /old/git/foo.git /var/opt/gitlab/git-data/repositories/new_group/
|
|
|
|
|
|
|
|
# Do this once when you are done copying git repositories
|
|
|
|
sudo chown -R git:git /var/opt/gitlab/git-data/repositories/new_group/
|
2014-10-29 18:21:55 -04:00
|
|
|
```
|
|
|
|
|
2015-01-16 22:36:44 -05:00
|
|
|
`foo.git` needs to be owned by the git user and git users group.
|
|
|
|
|
2015-01-26 11:03:04 -05:00
|
|
|
If you are using an installation from source, replace `/var/opt/gitlab/git-data`
|
|
|
|
with `/home/git`.
|
|
|
|
|
2014-10-30 18:36:25 -04:00
|
|
|
### Run the command below depending on your type of installation:
|
2014-10-29 18:21:55 -04:00
|
|
|
|
2014-10-30 14:10:07 -04:00
|
|
|
#### Omnibus Installation
|
2014-10-29 18:21:55 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
$ sudo gitlab-rake gitlab:import:repos
|
|
|
|
```
|
2014-06-23 04:38:22 -04:00
|
|
|
|
2015-02-16 12:10:07 -05:00
|
|
|
#### Installation from source
|
2014-10-29 18:21:55 -04:00
|
|
|
|
2014-10-30 18:36:25 -04:00
|
|
|
Before running this command you need to change the directory to where your GitLab installation is located:
|
2014-10-30 13:38:09 -04:00
|
|
|
|
2014-10-29 18:21:55 -04:00
|
|
|
```
|
|
|
|
$ cd /home/git/gitlab
|
|
|
|
$ sudo -u git -H bundle exec rake gitlab:import:repos RAILS_ENV=production
|
2014-04-30 09:02:37 -04:00
|
|
|
```
|
|
|
|
|
2014-10-31 07:51:25 -04:00
|
|
|
#### Example output
|
2014-04-30 09:02:37 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
Processing abcd.git
|
|
|
|
* Created abcd (abcd.git)
|
|
|
|
Processing group/xyz.git
|
|
|
|
* Created Group group (2)
|
|
|
|
* Created xyz (group/xyz.git)
|
|
|
|
[...]
|
|
|
|
```
|