2005-06-06 00:41:05 +02:00
|
|
|
git-ssh-pull(1)
|
|
|
|
===============
|
2005-05-10 23:32:30 +02:00
|
|
|
v0.1, May 2005
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-06-06 00:41:05 +02:00
|
|
|
git-ssh-pull - Pulls from a remote repository over ssh connection
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-06-06 00:41:05 +02:00
|
|
|
'git-ssh-pull' [-c] [-t] [-a] [-d] [-v] [--recover] commit-id url
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-06-06 00:41:05 +02:00
|
|
|
Pulls from a remote repository over ssh connection, invoking git-ssh-push
|
|
|
|
on the other end.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-c::
|
|
|
|
Get the commit objects.
|
|
|
|
-t::
|
|
|
|
Get trees associated with the commit objects.
|
|
|
|
-a::
|
|
|
|
Get all the objects.
|
2005-06-03 00:19:00 +02:00
|
|
|
-d::
|
|
|
|
Do not check for delta base objects (use this option
|
|
|
|
only when you know the remote repository is not
|
|
|
|
deltified).
|
2005-06-05 08:11:38 +02:00
|
|
|
--recover::
|
|
|
|
Check dependency of deltified object more carefully than
|
|
|
|
usual, to recover after earlier pull that was interrupted.
|
2005-05-10 23:32:30 +02:00
|
|
|
-v::
|
|
|
|
Report what is downloaded.
|
|
|
|
|
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
|
|
|
Part of the link:git.html[git] suite
|
|
|
|
|