From 3d2e9bb086333d50c7a2737fd9ab5c50618f27fa Mon Sep 17 00:00:00 2001 From: ImLighty Date: Thu, 16 Nov 2023 16:56:11 +0100 Subject: [PATCH] "fatal: not a git repository" --- startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startup.sh b/startup.sh index ebc7ce3..f387877 100644 --- a/startup.sh +++ b/startup.sh @@ -4,8 +4,8 @@ echo "machine ${GIT_SERVER} login ${GIT_USERNAME} password ${GIT_PASSWORD}" >> ~ if [ ! -d "src" ]; then git clone ${GIT_REPO} src - git config pull.rebase false cd src + git config pull.rebase false git checkout ${GIT_BRANCH} || exit 1 cd .. else