Add .gitlocal include to .gitconfig
This commit is contained in:
parent
44ff7c9a95
commit
403f1a8a5f
20
.gitconfig
20
.gitconfig
|
@ -1,7 +1,19 @@
|
||||||
[user]
|
[user]
|
||||||
name = Sage Vaillancourt
|
name = Sage Vaillancourt
|
||||||
email = sagev9000@tutanota.com
|
|
||||||
[core]
|
[core]
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
excludesfile = ~/.gitignore
|
||||||
|
|
||||||
[credential]
|
[credential]
|
||||||
helper = store
|
helper = store
|
||||||
|
|
||||||
|
[push]
|
||||||
|
default = current
|
||||||
|
followTags = true
|
||||||
|
|
||||||
|
[help]
|
||||||
|
autocorrect = 1
|
||||||
|
|
||||||
|
[include]
|
||||||
|
path = ~/.gitlocal
|
||||||
|
|
5
copy.sh
5
copy.sh
|
@ -33,6 +33,11 @@ ln -sf $SCRIPT_DIR/.vim/colors/* ~/.vim/colors/
|
||||||
|
|
||||||
touch ~/.zsh_local
|
touch ~/.zsh_local
|
||||||
|
|
||||||
|
if ! test -f ~/.gitlocal; then
|
||||||
|
echo "[user]" > ~/.gitlocal
|
||||||
|
echo " email = sagev9000@tutanota.com" >> ~/.gitlocal
|
||||||
|
fi
|
||||||
|
|
||||||
# Install required packages
|
# Install required packages
|
||||||
if [[ "$1" == "--install" ]]; then
|
if [[ "$1" == "--install" ]]; then
|
||||||
echo -n "Rust is "
|
echo -n "Rust is "
|
||||||
|
|
Loading…
Reference in New Issue