News
Practical 01 - SSH Instead of HTTPS
Written on 04.11.2025 15:29 by Daniel Weber
For technical reasons, we have to restrict the protocol for interacting with our repos. Hence, you have to...
0) Generate an SSH key, if you don't have one already.
1) Configure an SSH key via the Web interface
2) Add the SSH URL of the repo as the upstream:
git remote add upstream git@git.scad.attacking.systems:scad2025/upstream.git
3) Pull using from upstream using the SSH URL
git pull upstream main --allow-unrelated-histories
