我想查看lfs跟踪列表在特定提交时的情况。
尝试:
git lfs ls-files <commit sha>
但是它列出了我在该提交中无法找到的文件,很可能这是打印我正在跟踪的文件,而忽略了我通过的ref提交。
逗号的帮助说:
$ git lfs ls-files --help
git lfs ls-files [<ref>]
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.
有什么办法吗?我想念什么吗?
由于以下原因进行编辑: 可以说,在我最初的提交(51915d5)中,我只提交了.gitattributes和.gitignore文件。
如果我尝试:
git lfs ls-files 51915d5
它会在最后一次提交时向我显示 ALL LFS跟踪的文件。