Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 2 - working with remote host

At the moment all my projects are on localhost. Is there some way, via plugin or sublime itself, to work with files on remote host, or some kind of tutorial that shows how to do this?

like image 668
Sasha Avatar asked May 25 '13 17:05

Sasha


1 Answers

I prefer to mount the remote directory using sshfs and work there, otherwise I use ST2 SFTP package mentioned above.

sshfs:

This is a filesystem client based on the SSH File Transfer Protocol. Since most SSH servers already support this protocol it is very easy to set up: i.e. on the server side there's nothing to do. On the client side mounting the filesystem is as easy as logging into the server with ssh.

Example:

sshfs [email protected]:/server/path /local/path
like image 127
AGS Avatar answered Nov 20 '22 00:11

AGS