From f791a71163791a03158bead4e6cce34f903271e8 Mon Sep 17 00:00:00 2001 From: Frank Hinek Date: Thu, 18 Aug 2016 20:54:08 -0400 Subject: [PATCH] Fix typo in git config command As best I can tell `user.helper` should be `credential.helper`. See: https://git-scm.com/docs/gitcredentials and https://git-scm.com/docs/git-config --- git/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git/install.sh b/git/install.sh index 995cfe15279..1ab6807cc92 100755 --- a/git/install.sh +++ b/git/install.sh @@ -2,9 +2,9 @@ # Don't ask ssh password all the time if [ "$(uname -s)" = "Darwin" ]; then - git config --global user.helper osxkeychain + git config --global credential.helper osxkeychain else - git config --global user.helper cache + git config --global credential.helper cache fi # better diffs