]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-peek-remote.txt
Documentation: be consistent about "git-" versus "git "
[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--------
b1889c36 11'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
508e67ab
JH
12
13DESCRIPTION
14-----------
87194d26 15This command is deprecated; use `git-ls-remote` instead.
508e67ab
JH
16
17OPTIONS
18-------
3240240f 19--upload-pack=<git-upload-pack>::
508e67ab 20 Use this to specify the path to 'git-upload-pack' on the
2c6e4771
JS
21 remote side, if it is not found on your $PATH. Some
22 installations of sshd ignores the user's environment
508e67ab 23 setup scripts for login shells (e.g. .bash_profile) and
72e9340c 24 your privately installed git may not be found on the system
508e67ab
JH
25 default $PATH. Another workaround suggested is to set
26 up your $PATH in ".bashrc", but this flag is for people
27 who do not want to pay the overhead for non-interactive
2c6e4771 28 shells, but prefer having a lean .bashrc file (they set most of
508e67ab
JH
29 the things up in .bash_profile).
30
31<host>::
32 A remote host that houses the repository. When this
33 part is specified, 'git-upload-pack' is invoked via
34 ssh.
35
36<directory>::
37 The repository to sync from.
38
39
40Author
41------
42Written by Junio C Hamano <junkio@cox.net>
43
44Documentation
45--------------
46Documentation by Junio C Hamano.
47
48GIT
49---
9e1f0a85 50Part of the linkgit:git[1] suite