From 52ab99289d0bfadadbefedc85f06d434e3faeb7b Mon Sep 17 00:00:00 2001
From: ciotlosm
Date: Fri, 23 Jun 2017 23:03:01 +0300
Subject: [PATCH] Use sshfs example (#2871)
* Use sshfs
Example how to use sshfs instead of using samba.
* Update format
---
source/_addons/ssh.markdown | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/source/_addons/ssh.markdown b/source/_addons/ssh.markdown
index 2361e378ab4..710521d675b 100644
--- a/source/_addons/ssh.markdown
+++ b/source/_addons/ssh.markdown
@@ -35,3 +35,12 @@ If you're coming from Rasbian or similar, use `root` rather than `pi` when conne
Permission denied (publickey,keyboard-interactive)
```
+
+
+If you install this addon you can use `sshfs` as well to access files from a remote system where you have git and your favourite editing tools installed.
+
+```bash
+$ mkdir ~/ha_config
+$ sshfs -o allow_other,defer_permissions root@h[your_hassio_ip]:/config ~/ha_config
+```
+