3397fba8382955f232356efa5e8c6ae13e992433
[git.git] / Documentation / git-ssh-pull.txt
1 git-ssh-pull(1)
2 ===============
3 v0.1, May 2005
4
5 NAME
6 ----
7 git-ssh-pull - Pulls from a remote repository over ssh connection
8
9
10
11 SYNOPSIS
12 --------
13 'git-ssh-pull' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url
14
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.
20
21
22 OPTIONS
23 -------
24 commit-id::
25         Either the hash or the filename under [URL]/refs/ to
26         pull.
27
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 -d::
35         Do not check for delta base objects (use this option
36         only when you know the remote repository is not
37         deltified).
38 --recover::
39         Check dependency of deltified object more carefully than
40         usual, to recover after earlier pull that was interrupted.
41 -v::
42         Report what is downloaded.
43 -w::
44         Writes the commit-id into the filename under $GIT_DIR/refs/ on
45         the local end after the transfer is complete.
46
47
48 Author
49 ------
50 Written by Daniel Barkalow <barkalow@iabervon.org>
51
52 Documentation
53 --------------
54 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
55
56 GIT
57 ---
58 Part of the link:git.html[git] suite
59