2005-07-24 02:54:15 +02:00
|
|
|
git-peek-remote(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-peek-remote - List the references in a remote repository
|
2005-07-24 02:54:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
|
2005-07-24 02:54:15 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2010-01-10 00:33:00 +01:00
|
|
|
This command is deprecated; use 'git ls-remote' instead.
|
2005-07-24 02:54:15 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-06-08 03:36:09 +02:00
|
|
|
--upload-pack=<git-upload-pack>::
|
2008-07-03 07:41:41 +02:00
|
|
|
Use this to specify the path to 'git-upload-pack' on the
|
2005-08-05 17:05:02 +02:00
|
|
|
remote side, if it is not found on your $PATH. Some
|
|
|
|
installations of sshd ignores the user's environment
|
2005-07-24 02:54:15 +02:00
|
|
|
setup scripts for login shells (e.g. .bash_profile) and
|
2005-10-11 01:01:31 +02:00
|
|
|
your privately installed git may not be found on the system
|
2005-07-24 02:54:15 +02:00
|
|
|
default $PATH. Another workaround suggested is to set
|
|
|
|
up your $PATH in ".bashrc", but this flag is for people
|
|
|
|
who do not want to pay the overhead for non-interactive
|
2005-08-05 17:05:02 +02:00
|
|
|
shells, but prefer having a lean .bashrc file (they set most of
|
2005-07-24 02:54:15 +02:00
|
|
|
the things up in .bash_profile).
|
|
|
|
|
|
|
|
<host>::
|
|
|
|
A remote host that houses the repository. When this
|
2008-07-03 07:41:41 +02:00
|
|
|
part is specified, 'git-upload-pack' is invoked via
|
2005-07-24 02:54:15 +02:00
|
|
|
ssh.
|
|
|
|
|
|
|
|
<directory>::
|
|
|
|
The repository to sync from.
|
|
|
|
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|