Private
Public Access
11
1

Update Update-Pixelator-Version

2025-08-27 14:02:39 +02:00
parent 4c1ae32567
commit 5b6290477e

@@ -26,9 +26,29 @@ lrwxrwxrwx 1 control control 20 Aug 13 17:33 stxm-test -> ./stxm-20250813-rus
The new code can be downloaded from `gitea.psi.ch`. There are 3 ways to do this:
1. Use the `git clone` command with an **https** link - requires a token from gitea.psi.ch
2. Use the `git clone` command with an **ssh** link - requires uploading your public key to gitea.psi.ch
3. Log in to gitea.psi.ch and use the blue `<> code` button menu to download a ZIP or TAR.GZ archive
1. Use the `git clone` command with an **https** link - requires a [token from gitea.psi.ch](https://gitea.psi.ch/user/settings/applications)
```
cd ~/work
git clone https://gitea.psi.ch/MicroSpectro/Pixelator.git stxm-new-version
```
replace `stxm-new-version` with whatever directory name you wish to use (including the date is useful). When authenticating the git access, give your gitea user name and use the token as the password.
2. Use the `git clone` command with an **ssh** link - requires [uploading your public key to gitea.psi.ch](https://gitea.psi.ch/user/settings/keys)
```
cd ~/work
git clone git@gitea.psi.ch:MicroSpectro/Pixelator.git stxm-new-version
```
replace `stxm-new-version` with whatever directory name you wish to use (including the date is useful).
3. Log in to gitea.psi.ch and use the blue `<> code` button menu to download a ZIP or TAR.GZ archive. If you want a special branch (to test a special feature still in development), then be sure to choose the branch before downloading the code. Copy the archive into the `work` directory.
```
cd ~/work
unzip Pixelator-master.zip
mv pixelator stxm-new-version
rm Pixelator-master.zip
```
replace `stxm-new-version` with whatever directory name you wish to use (including the date is useful).
# Activate a Different Version