使用 Eclipse 编辑服务器上的文件
我正在尝试弄清楚如何使用 Eclipse 来做到这一点。我们目前运行 SVN,一切都运行良好,但我真的很想将 SSH 请求减少一半,并使用 Eclipse 直接在服务器上修改一些文件。我正在使用下面的 Eclipse 版本...我该怎么做?
Eclipse for PHP Developers
Build id: 20100218-1602
更新
我无意从等式中消除 SVN,但是当我们需要进行修补程序或一次性运行特定报告或函数时,我宁愿使用 Eclipse 而不是用于修改此类内容的终端。
I'm trying to figure out how to do this with Eclipse. We currently run SVN and everything works great, but I'd really like to cut my SSH requests in half and use Eclipse to modify some files directly on the server. I'm using the below build of eclipse... how can I do this?
Eclipse for PHP Developers
Build id: 20100218-1602
Update
I have no intention of eliminating SVN from the equation, but when we need to make a hotfix, or run a specific report or function as a one-time thing, I'd much rather use Eclipse than terminal for modifying that kind of thing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Eclipse wiki 上的 如何通过 SSH 使用远程工作区? 。我只是引用下面的摘要(阅读整个部分):
但无论您要进行什么实验,都不要绕过版本控制系统。
Have a look at How can I use a remote workspace over SSH? on the Eclipse wiki. I'm just quoting the summary below (read the whole section):
But whatever you'll experiment, don't bypassing the version control system.
您可以使用类似 SSHFS 的东西,但实际上,使用某种源是更好的主意控制系统而不是直接在服务器上编辑文件。如果 Subversion 还不够,也许您可以尝试使用 Git 或 Mercurial 之类的 DVCS。
You could use something like SSHFS, but really, it's a better idea to use some kind of source control system instead of editing files directly on the server. If Subversion isn't sufficient, perhaps you might try a DVCS like Git or Mercurial.