]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-peek-remote.txt
Reuse fixup_pack_header_footer in index-pack
[thirdparty/git.git] / Documentation / git-peek-remote.txt
CommitLineData
508e67ab
JH
1git-peek-remote(1)
2==================
508e67ab
JH
3
4NAME
5----
c3f0baac 6git-peek-remote - List the references in a remote repository
508e67ab
JH
7
8
9SYNOPSIS
10--------
27dca07f 11'git-peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
508e67ab
JH
12
13DESCRIPTION
14-----------
15Lists the references the remote repository has, and optionally
16stores them in the local repository under the same name.
17
18OPTIONS
19-------
27dca07f 20\--upload-pack=<git-upload-pack>::
508e67ab 21 Use this to specify the path to 'git-upload-pack' on the
2c6e4771
JS
22 remote side, if it is not found on your $PATH. Some
23 installations of sshd ignores the user's environment
508e67ab 24 setup scripts for login shells (e.g. .bash_profile) and
72e9340c 25 your privately installed git may not be found on the system
508e67ab
JH
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
2c6e4771 29 shells, but prefer having a lean .bashrc file (they set most of
508e67ab
JH
30 the things up in .bash_profile).
31
27dca07f
UKK
32\--exec=<git-upload-pack>::
33 Same \--upload-pack=<git-upload-pack>.
34
508e67ab
JH
35<host>::
36 A remote host that houses the repository. When this
37 part is specified, 'git-upload-pack' is invoked via
38 ssh.
39
40<directory>::
41 The repository to sync from.
42
43
44Author
45------
46Written by Junio C Hamano <junkio@cox.net>
47
48Documentation
49--------------
50Documentation by Junio C Hamano.
51
52GIT
53---
a7154e91 54Part of the gitlink:git[7] suite
508e67ab 55