git-lfs/docs/man/git-lfs-ls-files.1.ronn

45 lines
1.3 KiB
Plaintext
Raw Normal View History

git-lfs-ls-files(1) -- Show information about Git LFS files in the index and working tree
=========================================================================================
2015-01-30 17:07:50 +00:00
## SYNOPSIS
`git lfs ls-files` [<ref>]
2015-01-30 17:07:50 +00:00
## DESCRIPTION
Display paths of Git LFS files that are found in the tree at the given
reference. If no reference is given, scan the currently checked-out branch.
An asterisk (*) after the OID indicates a LFS pointer, a minus (-) a full object.
## OPTIONS
* `-l` `--long`:
Show the entire 64 character OID, instead of just first 10.
2015-01-30 17:07:50 +00:00
2017-12-01 17:33:54 +00:00
* `-s` `--size`:
Show the size of the LFS object between parenthesis at the end of a line.
2017-12-01 17:33:54 +00:00
* -d --debug:
Show as much information as possible about a LFS file. This is intended
for manual inspection; the exact format may change at any time.
* -a --all:
Inspects the full history of the repository, not the current HEAD (or other
provided reference).
* `--deleted`:
Shows the full history of the given reference, including objects that have
been deleted.
* `-I` <paths> `--include=`<paths>:
Include paths matching only these patterns; see [FETCH SETTINGS].
* `-X` <paths> `--exclude=`<paths>:
Exclude paths matching any of these patterns; see [FETCH SETTINGS].
2015-01-30 17:07:50 +00:00
## SEE ALSO
git-lfs-status(1), git-lfs-config(5).
2015-01-30 17:07:50 +00:00
2015-03-19 19:30:55 +00:00
Part of the git-lfs(1) suite.