debian-mirror-gitlab/doc/raketasks/list_repos.md

37 lines
1.1 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
2021-03-11 19:13:27 +05:30
stage: Enablement
group: Distribution
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
2021-03-11 19:13:27 +05:30
# Listing repository directories **(FREE SELF)**
2015-12-23 02:04:40 +05:30
2020-05-24 23:13:21 +05:30
You can print a list of all Git repositories on disk managed by GitLab.
To print a list, run the following command:
2015-12-23 02:04:40 +05:30
2020-04-08 14:13:33 +05:30
```shell
2015-12-23 02:04:40 +05:30
# Omnibus
sudo gitlab-rake gitlab:list_repos
# Source
cd /home/git/gitlab
sudo -u git -H bundle exec rake gitlab:list_repos RAILS_ENV=production
```
2020-05-24 23:13:21 +05:30
The results use the default ordering of the GitLab Rails application.
## Limit search results
To list only projects with recent activity, pass a date with the `SINCE` environment variable. The
time you specify is parsed by the Rails [TimeZone#parse function](https://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html#method-i-parse).
2015-12-23 02:04:40 +05:30
2020-04-08 14:13:33 +05:30
```shell
2015-12-23 02:04:40 +05:30
# Omnibus
sudo gitlab-rake gitlab:list_repos SINCE='Sep 1 2015'
# Source
cd /home/git/gitlab
sudo -u git -H bundle exec rake gitlab:list_repos RAILS_ENV=production SINCE='Sep 1 2015'
```