Note: Make sure Git and cURL is installed.
This should work on Mac OS X, Debian, Ubuntu, Fedora, RedHat, etc.
The easiest way is to use Git for installing:
$ git clone http://github.com/resmo/git-ftp.git
$ cd git-ftp
$ git checkout master
$ sudo make install
Updating using git
$ git pull
$ sudo make install
Adding on Ubuntu 10.04 (Lucid)
$ sudo -s
# add-apt-repository ppa:resmo/git-ftp
# aptitude update
# aptitude install git-ftp
Note: Usually updated after every release (tag).
There are at least two ways to install git-ftp on Windows.
- Using cygwin only
- Using cygwin and msysgit (recommended)
First install cygwin and install the package 'curl'. If you like to use cygwin only, install package 'git', otherwise install msysgit.
After this, open git bash (or cygwin bash for cygwin only):
$ cd ~
$ git clone http://github.com/resmo/git-ftp git-ftp.git
$ cd git-ftp.git && chmod +x git-ftp
$ cd /bin/
$ ln -s ~/git-ftp.git/git-ftp git-ftp
Note: Option -p without argument is showing password while entering.
This usually works on Linux based systems, but not on Mac OS X without extending $PATH.
Note: Make sure Git and cURL is installed.
This is a easy way to have more then one git-ftp installed
$ mkdir -p ~/develop/git-ftp.git
$ cd ~/develop/git-ftp.git
$ git clone http://github.com/resmo/git-ftp.git .
$ chmod +x git-ftp
$ mkdir ~/bin && cd ~/bin/
$ ln -s ~/develop/git-ftp.git/git-ftp git-ftp.dev
After this you can use 'git ftp.dev' or 'git-ftp.dev'
Update to the latest version is simple as:
$ cd ~/develop/git-ftp.git
$ git pull