标签: git static ftp webserver sync
我们有一个网站,正在为客户开发,使用git。
将文件上传到网络服务器。
然后,客户可以使用ftp更改站点,更改HTML文件。
将这些更改同步到我们的git服务器的最佳方法是什么?
答案 0 :(得分:2)
为什么不将它们rsync(或复制)到repo克隆中,并运行类似git commit -am"auto sync from customer ftp"的内容?
rsync
git commit -am"auto sync from customer ftp"