From db72fd565c6d560c6190832e5f23037b354bcb69 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 21 Dec 2021 19:38:18 -0300 Subject: [PATCH] Add gitconfig (with setup) --- .gitignore | 2 ++ scripts/bootstrap.sh | 28 ++++++++++++++++++++++++++++ templates/.gitconfig | 14 ++++++++++++++ templates/.gitconfig-work | 3 +++ 4 files changed, 47 insertions(+) create mode 100644 .gitignore create mode 100755 scripts/bootstrap.sh create mode 100644 templates/.gitconfig create mode 100644 templates/.gitconfig-work diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3a4073c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +dotfiles/.gitconfig +dotfiles/.gitconfig-work diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh new file mode 100755 index 0000000..94c076f --- /dev/null +++ b/scripts/bootstrap.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +getGitconfigData() { + dialog --msgbox "Now, I will ask you for data to set up gitconfig personal account." 10 60 + gitPersonalName=$(dialog --inputbox "Enter a name." 10 60 3>&1 1>&2 2>&3 3>&1) + gitPersonalMail=$(dialog --inputbox "Enter a mail." 10 60 3>&1 1>&2 2>&3 3>&1) + + dialog --msgbox "Let's continue with the work account." 10 60 + gitWorkPath=$(dialog --inputbox "Enter a folder (absolute) path where you would like to use the work account." 10 60 3>&1 1>&2 2>&3 3>&1) + while [[ ! -d $gitWorkPath ]]; do + gitWorkPath=$(dialog --no-cancel --inputbox "Path isn't valid. Please try again" 10 60 3>&1 1>&2 2>&3 3>&1) + done + gitWorkName=$(dialog --inputbox "Enter a name." 10 60 3>&1 1>&2 2>&3 3>&1) + gitWorkMail=$(dialog --inputbox "Enter a mail." 10 60 3>&1 1>&2 2>&3 3>&1) + + sed -e "s/PERSONAL_NAME/$gitPersonalName/g" -e "s/PERSONAL_MAIL/$gitPersonalMail/g" -e "s|WORK_PATH|${gitWorkPath}|g" ./templates/.gitconfig > ./dotfiles/.gitconfig + sed -e "s/WORK_NAME/$gitWorkName/g" -e "s/WORK_MAIL/$gitWorkMail/g" ./templates/.gitconfig-work > ./dotfiles/.gitconfig-work +} + +startRice() { + dialog --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles. Make sure to backup your dotfiles!" 10 60 + + ./scripts/linkFiles.sh + + getGitconfigData +} + +startRice \ No newline at end of file diff --git a/templates/.gitconfig b/templates/.gitconfig new file mode 100644 index 0000000..c5aa250 --- /dev/null +++ b/templates/.gitconfig @@ -0,0 +1,14 @@ +[user] + name = PERSONAL_NAME + email = PERSONAL_MAIL +[includeIf "gitdir:WORK_PATH"] + path = ~/.gitconfig-work +[commit] + gpgSign = false +[gc] + autoDetach = false +[filter "lfs"] + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true diff --git a/templates/.gitconfig-work b/templates/.gitconfig-work new file mode 100644 index 0000000..08610e0 --- /dev/null +++ b/templates/.gitconfig-work @@ -0,0 +1,3 @@ +[user] + name = WORK_NAME + email = WORK_MAIL