[PATCH] Reorder Makefile rules
[git/dscho.git] / Documentation / git-ssh-pull.txt
blobac3fb342f0522537850c03ead15939a0fd429465
1 git-ssh-pull(1)
2 ===============
3 v0.1, May 2005
5 NAME
6 ----
7 git-ssh-pull - Pulls from a remote repository over ssh connection
11 SYNOPSIS
12 --------
13 'git-ssh-pull' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url
15 DESCRIPTION
16 -----------
17 Pulls from a remote repository over ssh connection, invoking
18 git-ssh-push on the other end. It functions identically to
19 git-ssh-push, aside from which end you run it on.
22 OPTIONS
23 -------
24 commit-id::
25         Either the hash or the filename under [URL]/refs/ to
26         pull.
28 -c::
29         Get the commit objects.
30 -t::
31         Get trees associated with the commit objects.
32 -a::
33         Get all the objects.
34 -v::
35         Report what is downloaded.
36 -w::
37         Writes the commit-id into the filename under $GIT_DIR/refs/ on
38         the local end after the transfer is complete.
41 Author
42 ------
43 Written by Daniel Barkalow <barkalow@iabervon.org>
45 Documentation
46 --------------
47 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
49 GIT
50 ---
51 Part of the link:git.html[git] suite