From 2875b576169ad285b4ad65fa68c21da8b87b3ba5 Mon Sep 17 00:00:00 2001 From: "Philipp A. Hartmann" Date: Sat, 12 Jul 2014 19:02:56 +0200 Subject: [PATCH] Revert "Travis config trial: git config --global" Avoids messing with global config when running the script manually on a developer machine. This reverts commit 6225092355e3087c3e73928f54cc1073c55067d6. --- build/travis-doxygen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/travis-doxygen.sh b/build/travis-doxygen.sh index 1282a6f71..9f4b49d3d 100755 --- a/build/travis-doxygen.sh +++ b/build/travis-doxygen.sh @@ -64,8 +64,8 @@ gh_pages_prepare() git clone --single-branch -b gh-pages ${GHPAGES_URL} html cd html # setup git config (with defaults) - git config --global user.name "${GIT_NAME-travis}" - git config --global user.email "${GIT_EMAIL-"travis@localhost"}" + git config user.name "${GIT_NAME-travis}" + git config user.email "${GIT_EMAIL-"travis@localhost"}" # clean working dir rm -f .git/index git clean -df