Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想开始使用我的本地主机进行开发。我正在尝试找出将本地文件夹与远程 Web 服务器上的文件目录同步的最佳方法。在某些情况下,会有 10,000 多个文件。
这不适用于 php、css、javascript 等组件文件。这是用于我不希望使用 git/svn 的内容和媒体文件。
谢谢
我建议使用 rsync。它专为远程同步任务而构建。看看压缩和差分模式。
总是有rsync
http://linux.about.com/library/cmd/blcmdl1_rsync.htm
它专为此类任务而构建,并针对大文件集存在小增量时的同步进行了优化。
如果 rsync 是不可能的,你可以尝试wget,它有一些漂亮的 fetuers。