开发者

How to update my server files from a git repo automatically everyday

开发者 https://www.devze.com 2023-02-23 09:28 出处:网络
I am a noob in these server related work. I am writing some PHP code in my local system and has been updating my repo in github regularly. Each time I want to test my application, I copy all the files

I am a noob in these server related work. I am writing some PHP code in my local system and has been updating my repo in github regularly. Each time I want to test my application, I copy all the files from my local system onto my server through FTP and then do it. Now I want to know whether is there a way to automatically make the commits that I make to reflect in the files in the server. Is there a way to automatically make the server get the files from the repo periodically? (say, once everyday).

Can this be done other way, like when I make a push from my local machine, the 开发者_如何学Pythonrepo gets updated and in turn the files on the server also get updated?

My Server Details: Apache 2.2.15, Architecture i686 with Linux Kernel 2.6.18-194.32.1.el5


In addition to cronjobs, you can use a post-receive hook: http://help.github.com/post-receive-hooks/


If you have cronjobs you can use them. First set up the repository on your server. Then you can set up the cronjob, choose a time in which it should be executed, and then in the cronjob execute the following command:

cd your/repository/folder; git pull master origin


Perhaps explore the git archive command, which you can use to get a zip file or similar of your code. You could then perhaps use a script to copy that to your (other) server?

git archive --format=zip --output=./src.zip HEAD

will create a zip file called src.zip from the HEAD of your repo

More info:

  • http://www.kernel.org/pub/software/scm/git/docs/git-archive.html
  • Do a "git export" (like "svn export")?
0

精彩评论

暂无评论...
验证码 换一张
取 消