I would like to know if there is an easy way to push a GIT repository into production (on a FTP server) ? Thanks
|
|
|
Some tools recently added to the Git wiki:
|
|||||||||||
|
|
That's not what git is for, strictly speaking. However, if your source is something that doesn't need compiling or processing, say a website consisting entirely of html and javascript files and the like, you could have a clone of the repo on your webserver and use If you have any sort of compiling or processing, you should start looking at Ant, Maven, BuildR, SBT, etc. |
|||||
|
|
If you're on a mac and have Transmit, I'd recommend the following git-tranmit script (https://gist.github.com/379750). It uses DockSend to send only the last updated files. If you're not familiar with DockSend, check out http://www.panic.com/blog/2010/11/15-secrets-of-transmit/. Setup:
|
|||
|
|
|
There's a Ruby script here - Ruby git-deploy via FTP or SSH which uploads only the changed files in the git repo via FTP or SSH. As mentioned in another answer, here is the Python git-ftp.py script which does a similar thing. And here is the shell script version of git-ftp. There is also a Ruby gem project called git-deploy which lets you setup a custom deploy via a git remote using the |
|||
|
|
|
If you are putting code into production, I recommend using an "installer" such as an RPM package to install your code. That way it will be version stamped and you will be able to leverage the installer package to support updates to the production code. Git is not really designed to support production installations, it is intended to track changes to the code itself. In any event, with an .RPM (or EXE or whatever) built, you can just FTP it to the production system and install it like any other package. |
|||||
|
|
Add it as a remote, then you can push to it, however simply pushing code isn't enough, it needs to be merged with the working tree. The easiest way is to go the other way round, have a working tree on the server and fetch and merge into that. |
|||
|
|
|
This is a script in PHP to upload almost automatically the git-diff to a FTP server: |
|||
|
|