git.el: Run git-gc --auto after commits.
[git] / Documentation / git-ssh-upload.txt
1 git-ssh-upload(1)
2 =================
3
4 NAME
5 ----
6 git-ssh-upload - Push to a remote repository over ssh connection
7
8
9 SYNOPSIS
10 --------
11 'git-ssh-upload' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url
12
13 DESCRIPTION
14 -----------
15 THIS COMMAND IS DEPRECATED.
16
17 Pushes from a remote repository over ssh connection, invoking
18 git-ssh-fetch on the other end. It functions identically to
19 git-ssh-fetch, aside from which end you run it on.
20
21 OPTIONS
22 -------
23 commit-id::
24         Id of commit to push.
25
26 -c::
27         Get the commit objects.
28 -t::
29         Get tree associated with the requested commit object.
30 -a::
31         Get all the objects.
32 -v::
33         Report what is uploaded.
34 -w::
35         Writes the commit-id into the filename under [URL]/refs/ on
36         the remote end after the transfer is complete.
37
38 Author
39 ------
40 Written by Daniel Barkalow <barkalow@iabervon.org>
41
42 Documentation
43 --------------
44 Documentation by Daniel Barkalow
45
46 GIT
47 ---
48 Part of the gitlink:git[7] suite