github.com/x-oss-byte/git-lfs@v2.5.2+incompatible/docs/man/git-lfs-push.1.ronn (about)

     1  git-lfs-push(1) -- Push queued large files to the Git LFS endpoint
     2  ==================================================================
     3  
     4  ## SYNOPSIS
     5  
     6  `git lfs push` [options] <remote> [<ref>...]<br>
     7  `git lfs push` <remote> [<ref>...]<br>
     8  `git lfs push` --object-id <remote> [<oid>...]
     9  
    10  ## DESCRIPTION
    11  
    12  Upload Git LFS files to the configured endpoint for the current Git remote.  By
    13  default, it filters out objects that are already referenced by the local clone
    14  of the remote.
    15  
    16  ## OPTIONS
    17  
    18  * `--dry-run`:
    19      Print the files that would be pushed, without actually pushing them.
    20  
    21  * `--all`:
    22      This pushes all objects to the remote that are referenced by any commit
    23      reachable from the refs provided as arguments. If no refs are provided, then
    24      all refs are pushed.
    25  
    26  * `--object-id`:
    27      This pushes only the object OIDs listed at the end of the command, separated
    28      by spaces.
    29  
    30  ## SEE ALSO
    31  
    32  git-lfs-pre-push(1).
    33  
    34  Part of the git-lfs(1) suite.