diff --git a/app/models/repository.rb b/app/models/repository.rb index b7ca6e0919..ea87ea88fd 100644 --- a/app/models/repository.rb +++ b/app/models/repository.rb @@ -223,7 +223,9 @@ class Repository end def last_commit_for_path(sha, path) - commits(sha, path, 1).last + args = %W(git rev-list --max-count 1 #{sha} -- #{path}) + sha = Gitlab::Popen.popen(args, path_to_repo).first.strip + commit(sha) end # Remove archives older than 2 hours