Documentation / git-peek-remote.txton commit Merge branch 'sg/t3600-nul-sha1-fix' (504c194)
   1git-peek-remote(1)
   2==================
   3
   4NAME
   5----
   6git-peek-remote - List the references in a remote repository
   7
   8
   9SYNOPSIS
  10--------
  11[verse]
  12'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
  13
  14DESCRIPTION
  15-----------
  16This command is deprecated; use 'git ls-remote' instead.
  17
  18OPTIONS
  19-------
  20--upload-pack=<git-upload-pack>::
  21        Use this to specify the path to 'git-upload-pack' on the
  22        remote side, if it is not found on your $PATH. Some
  23        installations of sshd ignores the user's environment
  24        setup scripts for login shells (e.g. .bash_profile) and
  25        your privately installed git may not be found on the system
  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
  29        shells, but prefer having a lean .bashrc file (they set most of
  30        the things up in .bash_profile).
  31
  32<host>::
  33        A remote host that houses the repository.  When this
  34        part is specified, 'git-upload-pack' is invoked via
  35        ssh.
  36
  37<directory>::
  38        The repository to sync from.
  39
  40
  41GIT
  42---
  43Part of the linkgit:git[1] suite