From acb1485267da6ecdcfed424decd71525796167f6 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Fri, 22 Mar 2024 21:22:36 +0100 Subject: [PATCH] Update documentation --- docs/docs/getting-started/setting-up.mdx | 26 ++++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/docs/getting-started/setting-up.mdx b/docs/docs/getting-started/setting-up.mdx index a8582f3..1428fa8 100644 --- a/docs/docs/getting-started/setting-up.mdx +++ b/docs/docs/getting-started/setting-up.mdx @@ -30,34 +30,30 @@ You'll need to execute all commands in your project root. ```bash -git clone https://git.staropensource.de/StarOpenSource/CORE.git CORE +git clone https://git.staropensource.de/StarOpenSource/CORE-distrib-git.git CORE cd CORE git checkout develop -rm -rf project.godot ``` ```bash -git clone https://git.staropensource.de/StarOpenSource/CORE.git CORE +git clone https://git.staropensource.de/StarOpenSource/CORE-distrib-git.git CORE cd CORE git checkout stable -rm -rf project.godot ``` ```bash -git submodule add https://git.staropensource.de/StarOpenSource/CORE.git CORE +git submodule add https://git.staropensource.de/StarOpenSource/CORE-distrib-git.git CORE cd CORE git checkout develop -rm -rf project.godot ``` ```bash -git submodule add https://git.staropensource.de/StarOpenSource/CORE.git CORE +git submodule add https://git.staropensource.de/StarOpenSource/CORE-distrib-git.git CORE cd CORE git checkout stable -rm -rf project.godot ``` @@ -80,15 +76,17 @@ git pull cd CORE git pull origin develop cd .. -git submodule update +git add CORE +git commit -m "Update CORE Framework" ``` ```bash cd CORE -git pull origin develop +git pull origin stable cd .. -git submodule update +git add CORE +git commit -m "Update CORE Framework" ``` @@ -117,7 +115,8 @@ cd CORE git fetch git checkout stable cd .. -git submodule update +git add CORE +git commit -m "Switch CORE branch from develop to stable" ``` @@ -126,7 +125,8 @@ cd CORE git fetch git checkout develop cd .. -git submodule update +git add CORE +git commit -m "Switch CORE branch from stable to develop" ```