From 7b638cba859c863695ec0a5a88aa678659f79d21 Mon Sep 17 00:00:00 2001 From: Nicolas Brassard Date: Wed, 7 Aug 2024 14:19:32 -0400 Subject: [PATCH] (feat) Init git repo server side after install --- install.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install.sh b/install.sh index af6ceeb..8246cd9 100644 --- a/install.sh +++ b/install.sh @@ -941,6 +941,13 @@ cd - mv .env .env.dev ln -s .env.dev .env +echo "Initialize git repository" +git init +git add .gitignore .gitattributes +git add . +git add .env.* +git commit -a -m "Initial commit, on dev server" + echo "We are done 🐔🐔🐔" echo "To use deuxhuithuit.co login, configure config/agency-auth.php" echo "Please login at https://$PROJECT_CODE.288dev.com/craft"