blob: 87ea3fb05418f858ed3aac3d34eceb371bc0e07f [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-peek-remote(1)
2==================
3
4NAME
5----
Junio C Hamano7c73c662007-01-19 00:37:506git-peek-remote - List the references in a remote repository
Junio C Hamano1a4e8412005-12-27 08:17:237
8
9SYNOPSIS
10--------
Junio C Hamano15567bc2011-07-23 00:51:5911[verse]
Junio C Hamanofce7c7e2008-07-02 03:06:3812'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
Junio C Hamano1a4e8412005-12-27 08:17:2313
14DESCRIPTION
15-----------
Junio C Hamano1aa40d22010-01-21 17:46:4316This command is deprecated; use 'git ls-remote' instead.
Junio C Hamano1a4e8412005-12-27 08:17:2317
18OPTIONS
19-------
Junio C Hamanoeb415992008-06-08 22:49:4720--upload-pack=<git-upload-pack>::
Junio C Hamanoba4b9282008-07-06 05:20:3121Use this to specify the path to 'git-upload-pack' on the
Junio C Hamano1a4e8412005-12-27 08:17:2322remote side, if it is not found on your $PATH. Some
23installations of sshd ignores the user's environment
24setup scripts for login shells (e.g. .bash_profile) and
25your privately installed git may not be found on the system
26default $PATH. Another workaround suggested is to set
27up your $PATH in ".bashrc", but this flag is for people
28who do not want to pay the overhead for non-interactive
29shells, but prefer having a lean .bashrc file (they set most of
30the things up in .bash_profile).
31
Junio C Hamano1a4e8412005-12-27 08:17:2332<host>::
33A remote host that houses the repository. When this
Junio C Hamanoba4b9282008-07-06 05:20:3134part is specified, 'git-upload-pack' is invoked via
Junio C Hamano1a4e8412005-12-27 08:17:2335ssh.
36
37<directory>::
38The repository to sync from.
39
40
Junio C Hamano1a4e8412005-12-27 08:17:2341GIT
42---
Junio C Hamanof7c042d2008-06-06 22:50:5343Part of the linkgit:git[1] suite