From 191f7efa1a6eac61d29cefd49e723fb969ccd58d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 19 Jul 2018 21:04:22 +0100 Subject: [PATCH] Remove GIT_AUTHOR_* env vars They were slowing down the startup process of terminals, and git falls back on what's in the git config files if these env vars are not set. --- shell/git.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shell/git.sh b/shell/git.sh index 2f004b4..ccadc6c 100755 --- a/shell/git.sh +++ b/shell/git.sh @@ -2,10 +2,6 @@ # Git # -# Author name -export GIT_AUTHOR_NAME="`git config --global user.name`" -export GIT_AUTHOR_EMAIL="`git config --global user.email`" - # Aliases alias g="git" alias gi="git"