Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
7a8a892e
Commit
7a8a892e
authored
Sep 25, 2015
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add "rake gitlab:list_repos" task
parent
6055c507
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
doc/raketasks/list_repos.md
doc/raketasks/list_repos.md
+30
-0
lib/tasks/gitlab/list_repos.rake
lib/tasks/gitlab/list_repos.rake
+16
-0
No files found.
doc/raketasks/list_repos.md
0 → 100644
View file @
7a8a892e
# Listing repository directories
You can print a list of all Git repositories on disk managed by
GitLab with the following command:
```
# 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
```
If you only want to list projects with recent activity you can pass
a date with the 'SINCE' environment variable. The time you specify
is parsed by the Rails
[
TimeZone#parse
function
](
http://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html#method-i-parse
)
.
```
# 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'
```
Note that the projects listed are NOT sorted by activity; they use
the default ordering of the GitLab Rails application.
lib/tasks/gitlab/list_repos.rake
0 → 100644
View file @
7a8a892e
namespace
:gitlab
do
task
list_repos: :environment
do
scope
=
Project
if
ENV
[
'SINCE'
]
date
=
Time
.
parse
(
ENV
[
'SINCE'
])
warn
"Listing repositories with activity since
#{
date
}
"
project_ids
=
Project
.
where
([
'last_activity_at > ?'
,
date
]).
pluck
(
:id
)
scope
=
scope
.
where
(
id:
project_ids
)
end
scope
.
find_each
do
|
project
|
base
=
File
.
join
(
Gitlab
.
config
.
gitlab_shell
.
repos_path
,
project
.
path_with_namespace
)
puts
base
+
'.git'
puts
base
+
'.wiki.git'
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment