github.com/x-oss-byte/git-lfs@v2.5.2+incompatible/docs/man/git-lfs-ls-files.1.ronn (about) 1 git-lfs-ls-files(1) -- Show information about Git LFS files in the index and working tree 2 ========================================================================================= 3 4 ## SYNOPSIS 5 6 `git lfs ls-files` [<ref>] 7 8 ## DESCRIPTION 9 10 Display paths of Git LFS files that are found in the tree at the given 11 reference. If no reference is given, scan the currently checked-out branch. 12 An asterisk (*) after the OID indicates a LFS pointer, a minus (-) a full object. 13 14 ## OPTIONS 15 16 * `-l` `--long`: 17 Show the entire 64 character OID, instead of just first 10. 18 19 * `-s` `--size`: 20 Show the size of the LFS object between parenthesis at the end of a line. 21 22 * -d --debug: 23 Show as much information as possible about a LFS file. This is intended 24 for manual inspection; the exact format may change at any time. 25 26 * -a --all: 27 Inspects the full history of the repository, not the current HEAD (or other 28 provided reference). 29 30 * `--deleted`: 31 Shows the full history of the given reference, including objects that have 32 been deleted. 33 34 * `-I` <paths> `--include=`<paths>: 35 Include paths matching only these patterns; see [FETCH SETTINGS]. 36 37 * `-X` <paths> `--exclude=`<paths>: 38 Exclude paths matching any of these patterns; see [FETCH SETTINGS]. 39 40 ## SEE ALSO 41 42 git-lfs-status(1), git-lfs-config(5). 43 44 Part of the git-lfs(1) suite.