Is it possible to deploy a PHP website using git push? I have a hunch it has something to do with using git hooks to perform a git reset --hard on the server side, but how would I go about accomplishing this?
|
|
|||||||||
|
|
I found this script on this site and it seems to work quite well.
|
|||||||||||||||||||||
|
|
For all of those looking for the post-update file, here it goes:
Alternatively, you may find it in Google's cache: |
|||||
|
|
After many false starts and dead ends, I'm finally able to deploy website code with just "git push remote" thanks to this article. The author's post-update script is only one line long and his solution doesn't require .htaccess configuration to hide the Git repo as some others do.
A couple of stumbling blocks if you're deploying this on an Amazon EC2 instance; 1) If you use sudo to create the bare destination repository, you have to change the owner of the repo to ec2-user or the push will fail. (Try "chown ec2-user:ec2-user repo.") 2) The push will fail if you don't pre-configure the location of your amazon-private-key.pem, either in /etc/ssh/ssh_config as an IdentityFile parameter or in ~/.ssh/config using the "[Host] - HostName - IdentityFile - User" layout described here... ...HOWEVER if Host is configured in ~/.ssh/config and different than HostName the Git push will fail. (That's probably a Git bug) |
|||||||||||||||
|
|
dont install git on a server or copy the .git folder there. to update a server from a git clone you can use following command:
you might have to delete files which got removed from the project. this copies all the checked in files. rsync uses ssh which is installed on a server anyways. the less software you have installed on a server the more secure he is and the easier it is to manage it's configuration and document it. there is also no need to keep a complete git clone on the server. it only makes it more complex to secure everything properly. |
|||||
|
|
The way I do it is I have a bare Git repository on my deployment server where I push changes. Then I log in to the deployment server, change to the actual web server docs directory, and do a git pull. I don't use any hooks to try to do this automatically, that seems like more trouble than it's worth. |
|||||||||||
|
|
In essence all you need to do are the following:
I have those lines in my application as an executable called so when I want to do a deploy I type |
|||||||||
|
|
Update: I'm now using Lloyd Moore solution with the key agent Not seeing this solution here. just push via ssh if git is installed on the server. You'll need the following entry in your local .git/config
But hey, whats that with
now you can call
(BTW: /path/to/project.git is different to the actual working directory /path/to/project) |
||||
|
I've just released a project called Giddyup! designed to make deployment using "git push" as simple as it possibly can be. It's language- and framework-agnostic, and aims to be simple to install, and to make deployment as simple as possible. I think it'll suit your requirements quite well. |
|||
|
|
|
We use capistrano for managing deploy. We build capistrano to deploy on a staging server, and then running a rsync with all of ours server.
With capistrano, we can made easy rollback in case of bug
|
||||
|
|
|
Sounds like you should have two copies on your server. A bare copy, that you can push/pull from, which your would push your changes when you're done, and then you would clone this into you web directory and set up a cronjob to update git pull from your web directory every day or so. |
|||
|
|
|
Giddyup are language-agnostic just-add-water git hooks to automate deployment via git push. It also allows you to have custom start/stop hooks for restarting web server, warming up cache etc. https://github.com/mpalmer/giddyup Check out examples. |
|||
|
|
|
I found this one and it works really great: |
|||
|
|
|
You could conceivably set up a git hook that when say a commit is made to say the "stable" branch it will pull the changes and apply them to the PHP site. The big downside is you won't have much control if something goes wrong and it will add time to your testing - but you can get an idea of how much work will be involved when you merge say your trunk branch into the stable branch to know how many conflicts you may run into. It will be important to keep an eye on any files that are site specific (eg. configuration files) unless you solely intend to only run the one site. Alternatively have you looked into pushing the change to the site instead? For information on git hooks see the githooks documentation. |
|||
|
|
|
Given an environment where you have multiple developers accessing the same repository the following guidelines may help. Ensure that you have a unix group that all devs belong to and give ownership of the .git repository to that group.
|
||||
|
|
|
I ended up creating my own rudimentary deployment tool which would automatically pull down new updates from the repo - https://github.com/jesalg/SlimJim - Basically it listens to the github post-receive-hook and uses a proxy to trigger an update script. |
|||
|
|
|
I have had success using capistrano with my projects, which although was originally designed for Ruby on Rails application deployment, works well with PHP and other projects. |
|||
|