是否可以使用git push
部署网站? 我有一种预感,它与使用git钩子在服务器端执行git reset --hard
有关,但是我将如何实现呢?
#1楼
我最终创建了自己的基本部署工具,该工具会自动从存储库中提取新更新-https: //github.com/jesalg/SlimJim-基本上,它会侦听github post-receive-hook并使用代理触发更新脚本。
#2楼
我们使用capistrano来管理部署。 我们构建了capistrano以部署在登台服务器上,然后与我们所有的服务器运行rsync。
cap deploy
cap deploy:start_rsync (when the staging is ok)
使用capistrano,我们可以在发生错误的情况下轻松回滚
cap deploy:rollback
cap deploy:start_rsync
#3楼
我对基督徒的解决方案的看法。
git archive --prefix=deploy/ master | tar -x -C $TMPDIR | rsync $TMPDIR/deploy/ --copy-links -av username@server.com:/home/user/my_app && rm -rf $TMPDIR/deploy
- 将主分支归档到tar中
- 将tar存档提取到系统temp文件夹中的deploy dir中。
- rsync更改到服务器
- 从临时文件夹中删除deploy目录。
#4楼
我正在使用toroid.org提供的以下解决方案,该解决方案具有更简单的挂钩脚本。
在服务器上:
$ mkdir website.git && cd website.git
$ git init --bare
Initialized empty Git repository in /home/ams/website.git/
并将钩子安装在服务器上:
$ mkdir /var/www/www.example.org
$ cat > hooks/post-receive
#!/bin/sh
GIT_WORK_TREE=/var/www/www.example.org git checkout -f
GIT_WORK_TREE=/var/www/www git clean -f -d # clean directory from removed files
$ chmod +x hooks/post-receive
在您的客户上:
$ mkdir website && cd website
$ git init
Initialized empty Git repository in /home/ams/website/.git/
$ echo 'Hello, world!' > index.html
$ git add index.html
$ git commit -q -m "The humble beginnings of my web site."
$ git remote add web ssh://server.example.org/home/ams/website.git
$ git push web +master:refs/heads/master
然后发布,只需键入
$ git push web
网站上有完整的描述: http : //toroid.org/ams/git-website-howto
#5楼
我这样做的方法是,在我的部署服务器上有一个裸露的Git存储库,用于推送更改。 然后,我登录到部署服务器,更改为实际的Web服务器docs目录,然后执行git pull。 我不使用任何钩子来尝试自动执行此操作,这似乎比它值得的麻烦更多。
来源:oschina
链接:https://my.oschina.net/u/3797416/blog/3162990