gmg - Super-lightweight git manager

The idea

The idea is simple: no extra server layer, no extra proxies. Just a pure git and ssh.

Setup

The setup scripts are made for Debian/Ubuntu systems

shell cd share && ./gmg-setup git@org git@org.com

and that is it.

The setup creates /git folder for repositories and configures the global update hook to protect main branches.

Quick start

Creating a new repository

gmg repo create test -D "My test repo"

Creating a user

gmg user create bob "Bob M" -

Copy-paste the public ssh key-file to stdin (or use the file name instead of "-" argument)

Granting user access to a repository

gmg user grant bob test

Setting user as the maintainer

Maintainers can write to the main branch, for others it is forbidden.

gmg maintainer set bob test

Other operations

Type

gmg -h

for all possible commands.

Integrating with cgit

gmg automatically generates cgit-compatible configs.

apt -y install cgit nginx fcgiwrap

``` server { listen 80; rewrite ^/(.)/$ https://your-external.domain/$1 permanent; rewrite ^/cgit-css/(.) /$1 last; root /usr/share/cgit; try_files $uri @cgit;

auth_pam              "Git";
auth_pam_service_name "nginx";

location @cgit {
  include             fastcgi_params;
  fastcgi_param       SCRIPT_FILENAME /usr/local/bin/cgit-gmg.cgi;
  fastcgi_param       PATH_INFO       $uri;
  fastcgi_param       QUERY_STRING    $args;
  fastcgi_param       HTTP_HOST       $server_name;
  fastcgi_pass        unix:/var/run/fcgiwrap.socket;
}

} ```