Article

git push vs. FTP

GitPushVsFTP

Building a website is great, but a website doesn’t do any good if no one can see it! Without deployments, you may be able to see your website, but no one else will.

In order to be useful, every code change must be deployed, usually to multiple servers, as part of the development and release process.

One common way to deploy code changes is via FTP. Using FTP (or SFTP) for deployment has additional time, cost, and risk that we would rather avoid, especially when there’s a much better option readily available: deploying via git push.

Sometimes we’re asked why we go through additional work to set up deployments with git. Here are 8 reasons why:

  1. With FTP deployments, you need to re-upload the entire website with each change (or manually track which files have changed) whereas git will automatically transfer the exact changes needed.
  2. Git allows us to work with complete changesets rather than individual files. Oftentimes a change in one file will depend on a change in another file. With git, these changes are all bundled together in a commit, whereas with FTP we’re forced to always work with individual files and directories.
  3. With FTP deployments, you can’t tell which version of the code is currently running on the server, whereas git keeps track of that and makes it easily accessible.
  4. With git running on the server it’s very easy to see files which may have been modified or added by malicious code or hackers; with FTP there is no such visibility.
  5. Git uses ssh as the network protocol which allows for individual password-less keys to be used for authentication, instead of shared passwords.
  6. FTP deployments are much more difficult to automate or integrate into a larger deployment workflow which should include things like CSS compilation, JavaScript minification, deleting private files, and more.
  7. Git provides a number of hooks which can run during and after updates are applied, allowing you to run custom scripts automatically when deployments are made.
  8. Git also makes it very easy to roll back to a previous version of the code – should that ever be necessary – since all past versions are already stored on the server.

For these reasons and more, we prefer using git for our deployments.

How do you deploy your code? Leave a comment or a question!

Steve-Hulet-Default-BW_optimize.jpg

Steve Hulet

CTO

Steve is the Co-Founder and CTO at Fresh. A former Software Engineer at Amazon with over 12 years of web development experience, Steve provides technical, architectural, and engineering oversight to projects. Steve is responsible for all technology reviews related to websites. His specialities include programming languages such as C, C++, Java, Python, and PHP, and technology software including Eclipse, GLPK, jQuery, Linux, and MATLAB. Steve’s skills include automation, databases, linear programming, optimization, and testing, all of which he uses in conjunction with Fresh’s digital strategists provide innovative solutions to clients.