git-lfs/docs/man/git-lfs-push.1.ronn

32 lines
918 B
Plaintext
Raw Normal View History

git-lfs-push(1) -- Push queued large files to the Git LFS endpoint
==================================================================
2014-06-02 22:35:56 +00:00
## SYNOPSIS
2015-04-24 16:04:02 +00:00
`git lfs push` <remote> [branch]
2014-06-02 22:35:56 +00:00
## DESCRIPTION
2015-04-30 15:27:14 +00:00
Upload Git LFS files to the configured endpoint for the current Git remote.
This command shouldn't be necessary since Git LFS automatically sets up a
pre-push hook for each repository.
## OPTIONS
* `--dry-run`:
Print the files that would be pushed, without actually pushing them.
* `--stdin`:
2015-04-24 17:43:29 +00:00
Read the remote and branch on stdin. This is used in conjunction with the
pre-push hook and must be in the format used by the pre-push hook:
<local-ref> <local-sha1> <remote-ref> <remote-sha1>. If --stdin is used
2015-04-24 17:41:14 +00:00
the command line arguments are ignored. NOTE: This is deprecated in favor
of the `pre-push` command.
2014-06-02 22:35:56 +00:00
## SEE ALSO
2015-04-24 16:04:02 +00:00
git-lfs-clean(1), git-lfs-pre-push(1).
2014-06-02 22:56:01 +00:00
2015-03-19 19:30:55 +00:00
Part of the git-lfs(1) suite.