#!/bin/bash
# Un-hide a repo

if [[ $1 == *..* ]]; then
	echo "No .." >&2
	exit 1
fi

git -C "$HOME/$1.git" config --local --unset cgit.hide
