gitlab-org--gitlab-foss/doc/raketasks/cleanup.md

24 lines
600 B
Markdown
Raw Normal View History

2014-05-27 08:12:15 -04:00
# Cleanup
2014-04-24 18:48:22 -04:00
## Remove garbage from filesystem. Important! Data loss!
2013-01-05 17:30:38 -05:00
2013-05-17 18:39:55 -04:00
Remove namespaces(dirs) from `/home/git/repositories` if they don't exist in GitLab database.
2013-01-05 17:30:38 -05:00
```
# omnibus-gitlab
sudo gitlab-rake gitlab:cleanup:dirs
# installation from source or cookbook
2013-01-05 17:30:38 -05:00
bundle exec rake gitlab:cleanup:dirs RAILS_ENV=production
```
2013-05-17 18:39:55 -04:00
Remove repositories (global only for now) from `/home/git/repositories` if they don't exist in GitLab database.
2013-01-05 17:30:38 -05:00
```
# omnibus-gitlab
sudo gitlab-rake gitlab:cleanup:repos
# installation from source or cookbook
2013-01-05 17:30:38 -05:00
bundle exec rake gitlab:cleanup:repos RAILS_ENV=production
```