From b94d5d26469d4a53c85d800b33fff57b30041e52 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 9 Oct 2020 09:57:21 +0000 Subject: [PATCH] add note about Git Credentials Cheat Sheet --- examples/git.rootprojects.org/root/gitdeploy/deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/git.rootprojects.org/root/gitdeploy/deploy.sh b/examples/git.rootprojects.org/root/gitdeploy/deploy.sh index 7419864..cb52461 100644 --- a/examples/git.rootprojects.org/root/gitdeploy/deploy.sh +++ b/examples/git.rootprojects.org/root/gitdeploy/deploy.sh @@ -9,6 +9,8 @@ fi echo "Deploying ${GIT_REPO_ID}#${GIT_REF_NAME} ..." +# See the Git Credentials Cheat Sheet +# https://coolaj86.com/articles/vanilla-devops-git-credentials-cheatsheet/ my_tmp="$(mktemp -d -t "tmp.XXXXXXXXXX")" git clone --depth=1 "${GIT_CLONE_URL}" "${my_tmp}/${GIT_REPO_NAME}" pushd "${my_tmp}/${GIT_REPO_NAME}/"