git-serv

All-in-one Git hosting container

git clone git://git.janzachar.dev/git-serv.git


0#!/bin/sh
1
2#shellcheck source=config/env
3. "/srv/config/env"
4
5echo "git instance at: $HOSTNAME:$PORT"
6echo "available commands:"
7
8for file in git-shell-commands/*;
9do
10	echo "  $(basename "$file")"
11done
12
13