17 lines
256 B
Bash
Executable File
17 lines
256 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function setup_git()
|
|
{
|
|
brew install git
|
|
|
|
cat << EOF > ${HOME}/.gitconfig
|
|
[include]
|
|
path = ${DOTFILES}/git/gitconfig
|
|
[core]
|
|
excludesfile = ${DOTFILES}/git/gitignore_global
|
|
EOF
|
|
}
|
|
|
|
export DOTFILES=/Users/thomas/dotfiles
|
|
setup_git
|