From c8334078d18ab1bbd9761a5f8ca38fadcaa37b0a Mon Sep 17 00:00:00 2001
From: David Huss <dh@atoav.com>
Date: Tue, 5 Nov 2024 16:33:11 +0100
Subject: [PATCH] Add Note about git to README

---
 README.md | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 14a983a..ad126ef 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
 
 See [this](https://blog.r0b.io/post/minimal-rpi-kiosk/) for a description of how to start chromium via .xinit 
 
-## note about apt and git
+## note about apt
 
 In `/etc/apt/apt.conf.d/proxy.conf` there is a proxy connection setup:
 
@@ -23,6 +23,15 @@ So we can then ssh into the machine with a tunnel
 ssh -R 127.0.0.1:8080 mediactl
 ```
 
+## note about git
+
+Git does not work in the mediactl network per default. As of now the recommended way is to mount it locally via sshfs:
+
+```bash
+mkdir -p remote-mediactl
+sudo sshfs -o allow_other,default_permissions -o IdentityFile=/home/d0/.ssh/id_ed25519 -p2222 d0@mediactl.mediahell.hfbk.net:/home/d0/mediactl remote-mediactl
+```
+
 
 ## Connection diagram
 
-- 
GitLab