blob: a34d62f0daa3ada5c5287008b05d989eb52cc8f0 [file] [log] [blame]
Junio C Hamano508e67a2005-07-23 17:54:15 -07001git-peek-remote(1)
2==================
Junio C Hamano508e67a2005-07-23 17:54:15 -07003
4NAME
5----
Junio C Hamanoc3f0baa2007-01-18 15:53:37 -08006git-peek-remote - List the references in a remote repository
Junio C Hamano508e67a2005-07-23 17:54:15 -07007
8
9SYNOPSIS
10--------
Jonathan Niederb1889c32008-06-30 01:09:04 -050011'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
Junio C Hamano508e67a2005-07-23 17:54:15 -070012
13DESCRIPTION
14-----------
Thomas Rast0b444cd2010-01-10 00:33:00 +010015This command is deprecated; use 'git ls-remote' instead.
Junio C Hamano508e67a2005-07-23 17:54:15 -070016
17OPTIONS
18-------
Stephan Beyer32402402008-06-08 03:36:09 +020019--upload-pack=<git-upload-pack>::
Jonathan Niederba020ef2008-07-03 00:41:41 -050020 Use this to specify the path to 'git-upload-pack' on the
Johannes Schindelin2c6e4772005-08-05 17:05:02 +020021 remote side, if it is not found on your $PATH. Some
22 installations of sshd ignores the user's environment
Junio C Hamano508e67a2005-07-23 17:54:15 -070023 setup scripts for login shells (e.g. .bash_profile) and
Christian Meder72e93402005-10-10 16:01:31 -070024 your privately installed git may not be found on the system
Junio C Hamano508e67a2005-07-23 17:54:15 -070025 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
Johannes Schindelin2c6e4772005-08-05 17:05:02 +020028 shells, but prefer having a lean .bashrc file (they set most of
Junio C Hamano508e67a2005-07-23 17:54:15 -070029 the things up in .bash_profile).
30
31<host>::
32 A remote host that houses the repository. When this
Jonathan Niederba020ef2008-07-03 00:41:41 -050033 part is specified, 'git-upload-pack' is invoked via
Junio C Hamano508e67a2005-07-23 17:54:15 -070034 ssh.
35
36<directory>::
37 The repository to sync from.
38
39
Junio C Hamano508e67a2005-07-23 17:54:15 -070040GIT
41---
Christian Couder9e1f0a82008-06-06 09:07:32 +020042Part of the linkgit:git[1] suite