tramp: Obtaining Tramp

 
 2 Obtaining Tramp.
 ******************
 
 TRAMP is included as part of Emacs (since Emacs version 22.1).
 
    TRAMP is also freely packaged for download on the Internet at
 <ftp://ftp.gnu.org/gnu/tramp/>.
 
    TRAMP development versions are available on Git servers.  Development
 versions contain new and incomplete features.
 
    One way to obtain from Git server is to visit the Savannah project
 page at the following URL and then clicking on the Git link in the
 navigation bar at the top.
 
 <http://savannah.gnu.org/projects/tramp/>
 
 Another way is to follow the terminal session below:
 
      ] *cd ~/emacs*
      ] *git clone git://git.savannah.gnu.org/tramp.git*
 
 From behind a firewall:
 
      ] *git config --global http.proxy http://user:pwd@proxy.server.com:8080*
      ] *git clone http://git.savannah.gnu.org/r/tramp.git*
 
 Tramp developers:
 
      ] *git clone login@git.sv.gnu.org:/srv/git/tramp.git*
 
 After one of the above commands, ‘~/emacs/tramp’ will containing the
 latest version of TRAMP.
 
 To fetch updates from the repository, use git pull:
 
      ] *cd ~/emacs/tramp*
      ] *git pull*
 
 Run ‘autoconf’ as follows to generate an up-to-date ‘configure’ script:
 
      ] *cd ~/emacs/tramp*
      ] *autoconf*