Documentation / git-ssh-upload.txton commit Merge branch 'lt/maint-rev-list-gitlink' into maint (be4b37b)
   1git-ssh-upload(1)
   2=================
   3
   4NAME
   5----
   6git-ssh-upload - Push to a remote repository over ssh connection
   7
   8
   9SYNOPSIS
  10--------
  11'git-ssh-upload' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url
  12
  13DESCRIPTION
  14-----------
  15THIS COMMAND IS DEPRECATED.
  16
  17Pushes from a remote repository over ssh connection, invoking
  18git-ssh-fetch on the other end. It functions identically to
  19git-ssh-fetch, aside from which end you run it on.
  20
  21OPTIONS
  22-------
  23commit-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
  38Author
  39------
  40Written by Daniel Barkalow <barkalow@iabervon.org>
  41
  42Documentation
  43--------------
  44Documentation by Daniel Barkalow
  45
  46GIT
  47---
  48Part of the gitlink:git[7] suite