如何在本地电脑和服务器同时编辑源代码
How to edit source code in local computer and server simultaneously
我是一名网络开发新手。我正在使用 XAMPP 和 Dreamweaver CS6。我想在我的本地计算机上编辑和调试我的源代码。然后我想将该编辑提交到我的网络服务器(共享或 vps)。现在我在本地计算机上编辑文件,然后将该文件上传到服务器。
任何人都可以提出任何其他选择。
提前致谢。
我很久没用过 Dreamweaver,但您可以在站点定义中设置的保存后上传。转到您设置的远程定义,然后单击“高级”选项卡。您可以将 DW 设置为在保存时自动上传。这通常不是最佳做法,但它是一种选择。
我想你可以通过多种方式实现这一目标。
例如,您可以使用部署工具(例如 Jenkins) and then configure it to hook your commits. In order to do this you need first to install Git in your system (I'm not sure but maybe you can even find some Git plugins for Dreamweaver so that you could work with Git directly from Dreamweaver; if not don't worry there are plenty of Git clients that help to facilitate use of Git, SourceTree 就是其中之一)
如果您觉得配置 Jenkins 来挂钩您的提交有困难,我建议您看一下 this answer。
我是一名网络开发新手。我正在使用 XAMPP 和 Dreamweaver CS6。我想在我的本地计算机上编辑和调试我的源代码。然后我想将该编辑提交到我的网络服务器(共享或 vps)。现在我在本地计算机上编辑文件,然后将该文件上传到服务器。
任何人都可以提出任何其他选择。
提前致谢。
我很久没用过 Dreamweaver,但您可以在站点定义中设置的保存后上传。转到您设置的远程定义,然后单击“高级”选项卡。您可以将 DW 设置为在保存时自动上传。这通常不是最佳做法,但它是一种选择。
我想你可以通过多种方式实现这一目标。
例如,您可以使用部署工具(例如 Jenkins) and then configure it to hook your commits. In order to do this you need first to install Git in your system (I'm not sure but maybe you can even find some Git plugins for Dreamweaver so that you could work with Git directly from Dreamweaver; if not don't worry there are plenty of Git clients that help to facilitate use of Git, SourceTree 就是其中之一)
如果您觉得配置 Jenkins 来挂钩您的提交有困难,我建议您看一下 this answer。