All-in-one Git hosting container
git clone git://git.janzachar.dev/git-serv.git
0#!/bin/sh123#shellcheck source=config/env4. "/srv/config/env"56usage() {7 echo "usage: ls"8 echo " prints all existing repos"9 exit 110}1112[ $# -ne 0 ] && usage1314find "/repos" -type d -mindepth 1 -maxdepth 1 -exec basename "{}" ".git" \;1516