SSHFS allows us to mount a remote filesystem and work with it locally. This means that instead of using the terminal to work with files on the server, we can simply mount the server’s filesystem with SSHFS and then use our local file explorer to navigate and manipulate files as though they existed on our laptop or desktop.
sshfs
:sudo apt-get install sshfs
brew install sshfs
mkdir ~/<new_directory>
sshfs <user_name>@<host_name>:/<directory> ~/<new_directory>
umount ~/<new_directory>
Visual Studio Code has a remote development extension. This works great if you’re doing a lot of coding on the remote server, but not so well if you just want to be able to move files around or easily copy them to your local computer.