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

25 lines
677 B
Markdown
Raw Normal View History

2014-05-27 12:12:15 +00:00
# Cleanup
2014-04-24 22:48:22 +00:00
## Remove garbage from filesystem. Important! Data loss!
2013-01-05 22:30:38 +00:00
Remove namespaces(dirs) from all repository storage paths if they don't exist in GitLab database.
2013-01-05 22:30:38 +00:00
```
# omnibus-gitlab
sudo gitlab-rake gitlab:cleanup:dirs
# installation from source
2013-01-05 22:30:38 +00:00
bundle exec rake gitlab:cleanup:dirs RAILS_ENV=production
```
Rename repositories from all repository storage paths if they don't exist in GitLab database.
The repositories get a `+orphaned+TIMESTAMP` suffix so that they cannot block new repositories from being created.
2013-01-05 22:30:38 +00:00
```
# omnibus-gitlab
sudo gitlab-rake gitlab:cleanup:repos
# installation from source
2013-01-05 22:30:38 +00:00
bundle exec rake gitlab:cleanup:repos RAILS_ENV=production
```