All-in-one Git hosting container
git clone git://git.janzachar.dev/git-serv.git
0#!/bin/sh12#shellcheck source=config/env3. "/srv/config/env"45echo "git instance at: $HOSTNAME:$PORT"6echo "available commands:"78for file in git-shell-commands/*;9do10 echo " $(basename "$file")"11done1213