[PATCH] possible memory leak in diff.c::diff_free_filepair()
[git.git] / Documentation / git-peek-remote.txt
blob90075403dce15f3232fceb1745561ebffa60400a
1 git-peek-remote(1)
2 ==================
3 v0.1, July 2005
5 NAME
6 ----
7 git-peek-remote - Lists the references in a remote repository.
10 SYNOPSIS
11 --------
12 'git-peek-remote' [--exec=<git-upload-pack>] [<host>:]<directory>
14 DESCRIPTION
15 -----------
16 Lists the references the remote repository has, and optionally
17 stores them in the local repository under the same name.
19 OPTIONS
20 -------
21 --exec=<git-upload-pack>::
22         Use this to specify the path to 'git-upload-pack' on the
23         remote side, if it is not found on your $PATH. Some
24         installations of sshd ignores the user's environment
25         setup scripts for login shells (e.g. .bash_profile) and
26         your privately installed GIT may not be found on the system
27         default $PATH.  Another workaround suggested is to set
28         up your $PATH in ".bashrc", but this flag is for people
29         who do not want to pay the overhead for non-interactive
30         shells, but prefer having a lean .bashrc file (they set most of
31         the things up in .bash_profile).
33 <host>::
34         A remote host that houses the repository.  When this
35         part is specified, 'git-upload-pack' is invoked via
36         ssh.
38 <directory>::
39         The repository to sync from.
42 Author
43 ------
44 Written by Junio C Hamano <junkio@cox.net>
46 Documentation
47 --------------
48 Documentation by Junio C Hamano.
50 GIT
51 ---
52 Part of the link:git.html[git] suite