Update Git config

master
Taeyeon Mori 8 years ago
parent e1e29d76c0
commit d1faf9d281
  1. 3
      git/config
  2. 2
      git/osx
  3. 7
      install

@ -4,3 +4,6 @@
[push]
default = simple
[url "git@github.com:"]
insteadOf = git://github.com/
insteadOf = https://github.com/

@ -0,0 +1,2 @@
[credential]
helper = osxkeychain

@ -102,6 +102,11 @@ generate "$HOME/.gitconfig" <<EOF
path = $(relpath "$GIT" "$HOME")/user-info
EOF
[ "`uname -s`" = "Darwin" ] && \
cat >>"$HOME/.gitconfig" <<EOF
path = $(relpath "$GIT" "$HOME")/osx
EOF
generate "$GIT/user-info" <<EOF
[user]
name = $REALNAME
@ -129,7 +134,7 @@ if echo $SHELL | grep -q zsh; then
msg "Login shell is already set to zsh, you're good to go!"
else
msg "Setting login shell to '/bin/zsh'..."
chsh -s /bin/zsh
chsh -s "`which zsh`"
warn echo "You need to relog to apply shell configuration."
fi

Loading…
Cancel
Save