1GIT-LFS-PUSH(1) GIT-LFS-PUSH(1)
2
3
4
6 git-lfs-push - Push queued large files to the Git LFS endpoint
7
9 git lfs push [options] <remote> [<ref>...]
10 git lfs push <remote> [<ref>...]
11 git lfs push [options] <remote> --stdin git lfs push --object-id
12 <remote> [<oid>...] git lfs push --object-id <remote> --stdin
13
15 Upload Git LFS files to the configured endpoint for the current Git
16 remote. By default, it filters out objects that are already referenced
17 by the local clone of the remote.
18
20 --dry-run
21 Print the files that would be pushed, without actually pushing
22 them.
23
24 --all
25 This pushes all objects to the remote that are referenced by any
26 commit reachable from the refs provided as arguments. If no refs
27 are provided, then all local refs are pushed. Note that this
28 behavior differs from that of git-lfs-fetch(1) when its --all
29 option is used; in that case, all refs are fetched, including refs
30 other than those under refs/heads and refs/tags. If you are
31 migrating a repository with these commands, make sure to run git
32 lfs push for any additional remote refs that contain Git LFS
33 objects not reachable from your local refs.
34
35 --object-id
36 This pushes only the object OIDs listed at the end of the command,
37 separated by spaces.
38
39 --stdin
40 Read a list of newline-delimited refs (or object IDs when using
41 --object-id) from standard input instead of the command line.
42
44 git-lfs-fetch(1), git-lfs-pre-push(1).
45
46 Part of the git-lfs(1) suite.
47
48
49
50 GIT-LFS-PUSH(1)