Add gitconfig (with setup)

This commit is contained in:
Santiago Lo Coco 2021-12-21 19:38:18 -03:00
parent 27bae6d414
commit db72fd565c
4 changed files with 47 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
dotfiles/.gitconfig
dotfiles/.gitconfig-work

28
scripts/bootstrap.sh Executable file
View File

@ -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

14
templates/.gitconfig Normal file
View File

@ -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

View File

@ -0,0 +1,3 @@
[user]
name = WORK_NAME
email = WORK_MAIL