update diff-delta.c copyright
[git/dscho.git] / Documentation / git-peek-remote.txt
blob74f37bd9040200c0dbc82c67b45540e873d4649e
1 git-peek-remote(1)
2 ==================
4 NAME
5 ----
6 git-peek-remote - List the references in a remote repository
9 SYNOPSIS
10 --------
11 'git-peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
13 DESCRIPTION
14 -----------
15 Lists the references the remote repository has, and optionally
16 stores them in the local repository under the same name.
18 OPTIONS
19 -------
20 \--upload-pack=<git-upload-pack>::
21         Use this to specify the path to 'git-upload-pack' on the
22         remote side, if it is not found on your $PATH. Some
23         installations of sshd ignores the user's environment
24         setup scripts for login shells (e.g. .bash_profile) and
25         your privately installed git may not be found on the system
26         default $PATH.  Another workaround suggested is to set
27         up your $PATH in ".bashrc", but this flag is for people
28         who do not want to pay the overhead for non-interactive
29         shells, but prefer having a lean .bashrc file (they set most of
30         the things up in .bash_profile).
32 \--exec=<git-upload-pack>::
33         Same \--upload-pack=<git-upload-pack>.
35 <host>::
36         A remote host that houses the repository.  When this
37         part is specified, 'git-upload-pack' is invoked via
38         ssh.
40 <directory>::
41         The repository to sync from.
44 Author
45 ------
46 Written by Junio C Hamano <junkio@cox.net>
48 Documentation
49 --------------
50 Documentation by Junio C Hamano.
52 GIT
53 ---
54 Part of the gitlink:git[7] suite