From 186125d7512bd4dd095cd7b60bc648eb603c2290 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sun, 28 Feb 2021 08:15:17 -0500 Subject: moved all i3-related scripts into i3 or i3blocks config --- git-create | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 git-create (limited to 'git-create') diff --git a/git-create b/git-create deleted file mode 100755 index 48fa1d7..0000000 --- a/git-create +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -# TODO: update this for gitea, insta-creation of repo - -# create a repo of provided name on macon and make it the upstream -name=$1 -[ ! $(echo "$name" | grep ".git" -) ] && name="$1.git" - -description=$2 - -echo "'$name': '$description'" -echo "Create repo?" -read choice -[ ! $choice == "y" ] && exit 1 - -ssh git@53hor.net << EOF - cd /srv/git - git init --bare /srv/git/"$name" - cd "$name" - rm description - echo "$description" > description -EOF - -echo "Mark for export (make clone-able)?" -read choice -[[ $choice == "y" ]] && ssh git@53hor.net touch /srv/git/"$name"/git-daemon-export-ok - -echo "Clone repo locally?" -read choice -[[ ! $choice == "y" ]] && exit 1 - -git clone git@53hor.net:/srv/git/"$name" -- cgit v1.2.3