forked from git-ftp/git-ftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
34 lines (25 loc) · 731 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
INSTALL
=======
Ubuntu PPA (Personal Package Archive) Repository
------------------------------------------------
Adding on Ubuntu 10.04 (Lucid)
$ sudo -s
# add-apt-repository ppa:resmo/git-ftp
# aptitude update
# aptitude install git-ftp
Upstream using git
-------------------
Make sure git and curl is installed.
# aptitude install git-core curl
The easiest way is to use git for installing:
$ mkdir -p ~/dev/git-ftp.git
$ cd ~/dev/git-ftp.git
$ git clone http://github.com/resmo/git-ftp.git .
$ chmod 0755 git-ftp
$ mkdir ~/bin
$ cd ~/bin/
$ ln -s ~/dev/git-ftp.git/git-ftp git-ftp
After this you can use 'git ftp' or 'git-ftp'
Update to the latest version is simple as:
$ cd ~/dev/git-ftp.git
$ git pull