update-bash: don't be quiet for git init

The output will help to show git is initialized in the first time.
Hence, offer a better UX.
This commit is contained in:
Xu Cheng 2016-01-28 19:32:41 +08:00
parent 0ec5fec801
commit 47d1c2c4e6

View File

@ -47,7 +47,7 @@ git_init_if_necessary() {
if [[ ! -d ".git" ]] if [[ ! -d ".git" ]]
then then
git init -q git init
git config --bool core.autocrlf false git config --bool core.autocrlf false
git config remote.origin.url https://github.com/Homebrew/homebrew.git git config remote.origin.url https://github.com/Homebrew/homebrew.git
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"