blob: 99809ef434df7212d31a144f09596ae2c67c8011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
### Remove garbage from filesystem. Important! Data loss!
Remove namespaces(dirs) from `/home/git/repositories` if they don't exist in GitLab database.
```
bundle exec rake gitlab:cleanup:dirs RAILS_ENV=production
```
Remove repositories (global only for now) from `/home/git/repositories` if they don't exist in GitLab database.
```
bundle exec rake gitlab:cleanup:repos RAILS_ENV=production
```
|