test_helper: Don't clobber global name/email config
Config included by gitconfig [include] is not considered global. Test git config values without --global to include local config as well. Change only local config (not global) if needed.
This commit is contained in:
@@ -4,9 +4,9 @@ orig_cwd="$PWD"
|
||||
source "$scmbDir/lib/git/helpers.sh"
|
||||
|
||||
# Set up demo git user if not configured
|
||||
if [ -z "$(git config --global user.email)" ]; then
|
||||
git config --global user.email "testuser@example.com"
|
||||
git config --global user.name "Test User"
|
||||
if [ -z "$(git config user.email)" ]; then
|
||||
git config user.email "testuser@example.com"
|
||||
git config user.name "Test User"
|
||||
fi
|
||||
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user