#!/bin/bash

# Check for project name as parameter
if [ $# -eq 0 ]; then 
  echo "ERROR: Specify name for new GIT project!"
  exit 1
fi

# Make sure parameter does not end in '.git', since that is reserved for the repository
project=${1%%.git}
repo="${project}.git"

# Don't overwrite existing project
if [ -e "$project" ]; then
  echo "ERROR: Directory for '$project' already exists!"
  exit 1
fi

echo "Creating new GIT project repository: '$project'"

# GIT-ify new directory
mkdir $project
cd $project
git init

# Templates and basics (3-BSD license)
year=`date +%Y`
cat > LICENSE <<LIC
Copyright ${year} Christian Wolff

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

https://opensource.org/license/bsd-3-clause

LIC
cat > .gitignore <<IGNORE
.DS_Store
*~
IGNORE

# Initial commit to 'main'
git add .
git commit -m 'Initial commit - 3-Clause BSD License'
git branch -m main
ssh git@git.scara.com ./mkrepo.sh $project
git remote add origin git@git.scara.com:${repo}
git push --set-upstream origin main

