#!/bin/bash if [ $# -eq 0 ]; then echo "[!] no repository name specified" exit fi REPOSITORY="$1" # with .git REPONAME="$1" # without .git if [[ ! "$REPOSITORY" == *.git ]]; then REPOSITORY="$REPOSITORY.git" fi if [[ "$REPONAME" == *.git ]]; then REPONAME=$(echo "$REPONAME" | sed 's/\.git$//') fi if [ ! -d "/srv/git/$REPOSITORY" ]; then echo "[!] repository doesn't exist" exit fi ln -s "/srv/git/$REPOSITORY" "/srv/git/.public/$REPONAME" echo "[#] made $REPONAME publicly visible"