git-lfs/man/git-media.1.ronn

38 lines
1.2 KiB
Plaintext
Raw Normal View History

2014-06-02 22:06:48 +00:00
git-media(1) -- Work with large files in Git repositories.
==========================================================
## SYNOPSIS
`git media` <command> [<args>]
## DESCRIPTION
Git Media is a set of filters and hooks to work with large files in Git
repositories. Instead of storing the large files as Git blobs, Git Media uses
2014-06-02 22:35:56 +00:00
clean and smudge filters to store a pointer in Git blobs instead. The actual
file gets pushed to a Git Media HTTPS endpoint, and downloaded automatically
when a Git branch is checked out.
2014-06-02 22:10:38 +00:00
## COMMANDS
2014-06-02 22:35:56 +00:00
Like Git, Git Media commands are separated into high level ("porcelain")
commands and low level ("plumbing") commands.
### High-level commands (porcelain)
2014-06-02 22:10:38 +00:00
* git-media-config(1):
Display the Git Media environment.
2014-06-02 22:14:53 +00:00
* git-media-init(1):
Ensure Git Media is configured properly.
2014-06-02 23:10:04 +00:00
* git-media-path(1):
View and modify Git Media paths in Git attributes.
2014-06-02 22:35:56 +00:00
* git-media-push(1):
Push queued large files to the Git Media endpoint.
2014-06-02 22:56:01 +00:00
### Low level commands (plumbing)
* git-media-clean(1):
Git clean filter that converts large files to pointers.
* git-media-smudge(1):
Git smudge filter that converts pointer in blobs to the actual content.