]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-peek-remote.txt
Merge branch 'maint'
[thirdparty/git.git] / Documentation / git-peek-remote.txt
1 git-peek-remote(1)
2 ==================
3
4 NAME
5 ----
6 git-peek-remote - List the references in a remote repository
7
8
9 SYNOPSIS
10 --------
11 'git-peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
12
13 DESCRIPTION
14 -----------
15 This command is deprecated; use `git-ls-remote` instead.
16
17 OPTIONS
18 -------
19 \--upload-pack=<git-upload-pack>::
20 Use this to specify the path to 'git-upload-pack' on the
21 remote side, if it is not found on your $PATH. Some
22 installations of sshd ignores the user's environment
23 setup scripts for login shells (e.g. .bash_profile) and
24 your privately installed git may not be found on the system
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
28 shells, but prefer having a lean .bashrc file (they set most of
29 the things up in .bash_profile).
30
31 \--exec=<git-upload-pack>::
32 Same \--upload-pack=<git-upload-pack>.
33
34 <host>::
35 A remote host that houses the repository. When this
36 part is specified, 'git-upload-pack' is invoked via
37 ssh.
38
39 <directory>::
40 The repository to sync from.
41
42
43 Author
44 ------
45 Written by Junio C Hamano <junkio@cox.net>
46
47 Documentation
48 --------------
49 Documentation by Junio C Hamano.
50
51 GIT
52 ---
53 Part of the gitlink:git[7] suite