我有一些脚本,我想在有更新的版本时自动更新(使用cronjob进行常规检查并从ftp下载?)。有没有办法(不太复杂/先进)来实现这一目标? 提前谢谢
答案 0 :(得分:2)
使用svn或git代替ftp。
要设置svn,请转到svn存储库(即assembla或github)并阅读说明。然后,您可以上传代码,启动svn或git存储库。每次更新代码时,您都可以写(对于svn):
svn commit /path/where/you/code
之后你必须先办理结账:
svn checkout http:/repositoryurl /path/to/the/code
这样你就可以用一条线来获得你的cron作业,即。对于svn:
svn update /path/to/the/code
如果脚本不是你的,那么值得检查一个可用的svn或git存储库,因为大多数项目使用类似的东西。