From 26e2367c6b340f324d945a58dc7811fcf3367380 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 28 Oct 2017 10:27:04 -0200 Subject: Ask for basic git config and commit the initial repository --- templater | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'templater') diff --git a/templater b/templater index 377295a..d3f5d43 100755 --- a/templater +++ b/templater @@ -70,6 +70,26 @@ function __templater_copy_or_append { fi } +# Read a parameter from user +function __templater_user_input { + local input + local param="$1" + local default="$2" + shift 2 + + if echo $param | grep -q 'passwd'; then + read -s -rep "$* (defaults to $default): " input + else + read -rep "$* (defaults to $default): " input + fi + + if [ -z "$input" ]; then + export $param="$default" + else + export $param="$input" + fi +} + # Basic implementation function templater_basic { if [ ! -e "README.md" ]; then @@ -95,9 +115,14 @@ function templater_git { __templater_echo "Setting up git..." touch .gitignore + __templater_user_input GIT_USER User "-> Choose a git user name" + __templater_user_input GIT_EMAIL user@example.org "-> Choose a git email address" + git init + git config user.name $GIT_USER + git config user.email $GIT_EMAIL git add . - #git commit -m "Initial import" + git commit -m "Initial import" else __templater_echo "Git already set" fi -- cgit v1.2.3