From 8811e94b11a077f2117cb3e35d98fb54b9e4d316 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Fri, 5 Jun 2026 17:20:30 +0200 Subject: [PATCH] Soft: add standard commands --- data/soft-serve.md | 1 + data/soft-serve/commands.md | 29 +++++++++++++++++++++++++++++ networking/ssh.md | 3 +-- 3 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 data/soft-serve/commands.md diff --git a/data/soft-serve.md b/data/soft-serve.md index b4c9bd2..7801a16 100644 --- a/data/soft-serve.md +++ b/data/soft-serve.md @@ -10,5 +10,6 @@ requires: - networking/nginx.md --- +- [Soft-Serve with https](soft-serve/commands.md) - [Soft-Serve with https](soft-serve/soft_https.md) - [Maintenance](soft-serve/soft_maintenance.md) diff --git a/data/soft-serve/commands.md b/data/soft-serve/commands.md new file mode 100644 index 0000000..407c255 --- /dev/null +++ b/data/soft-serve/commands.md @@ -0,0 +1,29 @@ +--- +title: Soft-Serve Commands +tags: +- data +- git server +- CLI +requires: +- data/git.md +- networking/ssh.md +--- + +Some commands to try with an active soft server: + +```sh +ssh -p 2222 splint.rs repo list + +ssh -p 2222 splint.rs repo info nd6 + +ssh -p 2222 splint.rs repo tree nd6 / + +ssh -p 2222 splint.rs repo info newsraft + +ssh -p 2222 splint.rs repo tree newsraft main doc + +ssh -p 2222 splint.rs repo tree mkdots all scripts + +ssh -p 2222 splint.rs repo -cl cat mkdots all scripts/nb | less -R + +``` diff --git a/networking/ssh.md b/networking/ssh.md index fa7d0fe..d10967f 100644 --- a/networking/ssh.md +++ b/networking/ssh.md @@ -8,9 +8,8 @@ tags: Try out basic ssh by accessing `git.charm.sh`, without needing authentication: - ```sh -ssh git.charm.sh +ssh -t git.charm.sh ``` Start an ssh server to try it out.