Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to know if there is an easy way to push a GIT repository into production (on a FTP server) ? Thanks

share|improve this question

7 Answers

up vote 73 down vote accepted

Some tools recently added to the Git wiki:

git-ftp by René Moser is a simple shell script for doing FTP the Git way. Use git-ftp.sh to upload only the Git tracked files to a FTP server, which have changed since the last upload. This saves time and bandwith. Even if you play with different branches, git-ftp.sh knows which files are different. No ordinary FTP client can do that.

git-ftp by Edward Z. Yang is a simple script written in python for uploading files in a Git repository via FTP, only transferring new files and removing old files.

share|improve this answer
thats perfect, thanks – Roch Delsalle Jun 1 '10 at 17:16
8  
Have you guys tried both? Which one do you guys like better? – trusktr Mar 5 '12 at 8:35
2  
using git-ftp, is there a way to push just a subdirectory (e.g. the publish folder of html5 boilerplate) to the specified ftp directory? – gang Aug 9 '12 at 18:38

This is a script in PHP to upload almost automatically the git-diff to a FTP server:

http://code.google.com/p/upload-git-diff-with-ftp/

share|improve this answer

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 git push command, in the same way as the Heroku and Azure services. For this one you may need to write custom methods to deploy via FTP and I think it assumes you have SSH access to your production server.

share|improve this answer

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:

  1. List item
  2. cp git-transit /usr/sbin/.
  3. cd /usr/sbin
  4. chmod +x git-transmit
  5. Setup drop send for your live app
  6. Run git-transmit in your git repository.
share|improve this answer

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 git pull from the server to keep it up-to-date. Note, I would config your webserver to hide the git directory and such. And that's just the beginning of the security concerns.

If you have any sort of compiling or processing, you should start looking at Ant, Maven, BuildR, SBT, etc.

share|improve this answer
6  
The only problem with this is when you don't have access to the production server, i.e. it might be simple shared hosting, with only FTP access. – dodgy_coder Jun 13 '12 at 5:25

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.

share|improve this answer

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.

share|improve this answer
3  
Well, git can be leverage pretty well for this purpose in reality. Check out the tag and create post-checkout, post-merge etc hooks to handle any installation procedures needed. We used to use RPM packages but after moving to git it was simply overkill. – d11wtq Jun 1 '10 at 13:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.