1git-ssh-pull(1) 2=============== 3v0.1, May 2005 4 5NAME 6---- 7git-ssh-pull - Pulls from a remote repository over ssh connection 8 9 10 11SYNOPSIS 12-------- 13'git-ssh-pull' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url 14 15DESCRIPTION 16----------- 17Pulls from a remote repository over ssh connection, invoking 18git-ssh-push on the other end. It functions identically to 19git-ssh-push, aside from which end you run it on. 20 21 22OPTIONS 23------- 24commit-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 48Author 49------ 50Written by Daniel Barkalow <barkalow@iabervon.org> 51 52Documentation 53-------------- 54Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. 55 56GIT 57--- 58Part of the link:git.html[git] suite 59