mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 11:09:29 +00:00
[provisioning] Silence output of git config
This commit is contained in:
parent
f15024724e
commit
bbacd5a441
1 changed files with 2 additions and 2 deletions
|
@ -27,5 +27,5 @@ function _git {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
git config --global user.email || _run "[git] Setting user.email to '$GIT_EMAIL'" git config --global user.email $GIT_EMAIL
|
git config --global user.email >/dev/null || _run "[git] Setting user.email to '$GIT_EMAIL'" git config --global user.email $GIT_EMAIL
|
||||||
git config --global user.name || _run "[git] Setting user.name to '$GIT_NAME'" git config --global user.name $GIT_NAME
|
git config --global user.name >/dev/null || _run "[git] Setting user.name to '$GIT_NAME'" git config --global user.name $GIT_NAME
|
||||||
|
|
Loading…
Reference in a new issue