Skip to content

sshfs

sshfs is used to file mount remote files or directories. This is especially useful for development since I may not have access to lsp for certain servers.

For macos it is important to download MacFuse to enable mounting.

Terminal window
sshfs user@remote_host:/path/to/repo ~/remote_repo
Terminal window
fusermount -u ~/remote_repo # Linux
umount ~/remote_repo # macOS