Disable git checkout advice in create_stack.sh (#244)

This PR disables the git advice message seen for
each component as its installed.

Signed-off-by: Justin Scott <justin.a.scott@gmail.com>
This commit is contained in:
Justin Scott
2019-10-25 08:22:43 -07:00
committed by Syed Ahsan
parent d271a73fe3
commit 6972963363
+1 -1
View File
@@ -347,7 +347,7 @@ function set_repo_version() {
pushd "$(pwd)"
cd "${path}"
git fetch origin "${ver}"
git checkout "${ver}"
git -c advice.detachedHead=false checkout "${ver}"
popd
}