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-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. 39 40 41Author 42------ 43Written by Daniel Barkalow <barkalow@iabervon.org> 44 45Documentation 46-------------- 47Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. 48 49GIT 50--- 51Part of the link:git.html[git] suite 52