69013fd44a5b4cab09c93ebf530cbf05e3bc0574
[git.git] / Documentation / git-ssh-push.txt
1 git-ssh-push(1)
2 ===============
3 v0.1, Jun 2005
4
5 NAME
6 ----
7 git-ssh-push - Pushes to a remote repository over ssh connection
8
9
10 SYNOPSIS
11 --------
12 'git-ssh-push' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url
13
14 DESCRIPTION
15 -----------
16 Pushes from a remote repository over ssh connection, invoking
17 git-ssh-pull on the other end. It functions identically to
18 git-ssh-pull, aside from which end you run it on.
19
20 OPTIONS
21 -------
22 commit-id::
23         Id of commit to push.
24
25 -c::
26         Get the commit objects.
27 -t::
28         Get tree associated with the requested commit object.
29 -a::
30         Get all the objects.
31 -d::
32         Do not check for delta base objects (use this option
33         only when you know the local repository is not
34         deltified).
35 --recover::
36         Check dependency of deltified object more carefully than
37         usual, to recover after earlier push that was interrupted.
38 -v::
39         Report what is uploaded.
40 -w::
41         Writes the commit-id into the filename under [URL]/refs/ on
42         the remote end after the transfer is complete.
43
44 Author
45 ------
46 Written by Daniel Barkalow <barkalow@iabervon.org>
47
48 Documentation
49 --------------
50 Documentation by Daniel Barkalow
51
52 GIT
53 ---
54 Part of the link:git.html[git] suite
55