Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the project in the remote server and i have only ssh access. How i can work with this project? I am looking for information for either PhpStorm or NetBeans.

share|improve this question
1  
You can use rsync to send the files live after editing them in the IDE. – Treffynnon Mar 1 '12 at 20:54
Use Version Control + Deploy Server – student_ivan Mar 1 '12 at 20:55
1  
Yeah, you shouldnt be working directly on a server anyhow. Set up local environment to work with, then push to the server for final testing. – prodigitalson Mar 1 '12 at 20:56
3  
@prodigitalson Nobody said it is a production server. I use a remote server for development too and I find it useful. – Petr Peller Nov 1 '12 at 14:59

1 Answer

up vote 8 down vote accepted

You have several options, depending on your system.

  1. You can rsync or scp up your files when you want to publish.
  2. You can use version control (cvs, svn, git, mercurial, ...) and via ssh perform an "update" when you wish your code to go live.
  3. You can set up a sshfs filesystem locally.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.