Kristian
Kristian

Reputation: 1388

Gitlab, get project/commit/file count from command line

I want to display some basic stats about gitlab in my php script, but can't seem to find a way to get project/commit/file count from command line. Is it possible to get this information from command line? Thanks

Upvotes: 1

Views: 2410

Answers (1)

You'd have to use the API, possibly through clients like https://github.com/m4tthumphrey/php-gitlab-api or https://github.com/NARKOZ/gitlab

As for the precise data you want to get:

Upvotes: 2

Related Questions