aboutsummaryrefslogtreecommitdiffstats
path: root/del_repo
blob: 9fb038f85aca53a2b3baad9936cdd8c0e74a9c1c (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

echo -n "Input repo name to delete (excluding the .git suffix): "
read repo

rm -fvr /srv/git/$repo.git
rm -fvr ~/$repo*
rm -fv /srv/www/repositories/$repo*