diff --git a/docs/docs/getting-started/setting-up.mdx b/docs/docs/getting-started/setting-up.mdx index 5911f35..5108b7f 100644 --- a/docs/docs/getting-started/setting-up.mdx +++ b/docs/docs/getting-started/setting-up.mdx @@ -23,7 +23,7 @@ You'll need to execute all commands in your project root. ::: ### Installing SUI - + ```bash mkdir -p addons git clone https://git.staropensource.de/StarOpenSource/SUI-distrib.git addons/SUI @@ -31,15 +31,7 @@ cd SUI git checkout develop ``` - -```bash -mkdir -p addons -git clone https://git.staropensource.de/StarOpenSource/SUI-distrib.git addons/SUI -cd SUI -git checkout stable -``` - - + ```bash mkdir -p addons git submodule add https://git.staropensource.de/StarOpenSource/SUI-distrib.git addons/SUI @@ -47,30 +39,16 @@ cd SUI git checkout develop ``` - -```bash -mkdir -p addons -git submodule add https://git.staropensource.de/StarOpenSource/SUI-distrib.git addons/SUI -cd SUI -git checkout stable -``` - ### Updating SUI - + ```bash cd addons/SUI git pull ``` - -```bash -cd addons/SUI -git pull -``` - - + ```bash cd addons/SUI git pull origin develop @@ -79,53 +57,4 @@ git add SUI git commit -m "Update StarOpenSource UI" ``` - -```bash -cd addons/SUI -git pull origin stable -cd .. -git add SUI -git commit -m "Update StarOpenSource UI" -``` - - -## Changing branches -:::warning -Changing branches can result in errors and missing features. We don't accept issues regarding switching branches, you will be on your own! -::: - - -```bash -cd addons/SUI -git fetch -git checkout stable -``` - - -```bash -cd addons/SUI -git fetch -git checkout develop -``` - - -```bash -cd addons/SUI -git fetch -git checkout stable -cd .. -git add SUI -git commit -m "Switch SUI branch from develop to stable" -``` - - -```bash -cd addons/SUI -git fetch -git checkout develop -cd .. -git add SUI -git commit -m "Switch SUI branch from stable to develop" -``` -