arifwidip / git-ftp

Uses Git to upload only changed files to FTP servers.

Home Page:https://git-ftp.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status GitHub version

README of git-ftp

Summary

Git powered FTP client written as shell script.

About

I use git-ftp for my script based projects, mostly PHP. Most of the low-cost web hosting companies do not provide SSH or git support, but only FTP.

That is why I needed an easy way to deploy my git tracked projects. Instead of transferring the whole project, I thought, why not only transfer the files that changed since the last time, git can tell me those files.

Even if you are playing with different branches, git-ftp knows which files are different. No ordinary FTP client can do that.

Known Issues

Installing

See INSTALL file.

Usage

$ cd my_git_tracked_project
$ git ftp push --user <user> --passwd <password> ftp://host.example.com/public_html

For interactive password prompt use -P:

$ git ftp push -u <user> -P ftp://host.example.com/public_html

Pushing for the first time:

$ git ftp init -u <user> -P ftp://host.example.com/public_html

See man page for more options, features and examples!

Limitations

  • Windows and OS X: I am very limited in testing on Windows and OS X. Thanks for helping me out fixing bugs on these platforms.
  • git-ftp as deployment tool: git-ftp was not designed as centralized deployment tool. While running git-ftp, you have to take care, no one pushes or touches this repo (e.g. no commits, no checkouts, no file modifications)!

Unit Tested

Core functionality is unit tested on Linux using shunit2. You can find the tests in tests/.

Contributions

Don't hesitate to use GitHub to improve this tool. Don't forget to add yourself to the AUTHORS file.

About

Uses Git to upload only changed files to FTP servers.

https://git-ftp.github.io/

License:GNU General Public License v3.0


Languages

Language:Shell 71.2%Language:HTML 14.8%Language:Groff 11.1%Language:CSS 2.4%Language:Makefile 0.5%Language:PHP 0.1%