# Listing repository directoriesYou can print a list of all Git repositories on disk managed byGitLab with the following command:```# Omnibussudo gitlab-rake gitlab:list_repos# Sourcecd /home/git/gitlabsudo -u git -H bundle exec rake gitlab:list_repos RAILS_ENV=production```If you only want to list projects with recent activity you can passa date with the 'SINCE' environment variable. The time you specifyis parsed by the Rails [TimeZone#parsefunction](http://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html#method-i-parse).```# Omnibussudo gitlab-rake gitlab:list_repos SINCE='Sep 1 2015'# Sourcecd /home/git/gitlabsudo -u git -H bundle exec rake gitlab:list_repos RAILS_ENV=production SINCE='Sep 1 2015'```Note that the projects listed are NOT sorted by activity; they usethe default ordering of the GitLab Rails application.