浏览稀疏的 git checkout

问题描述 投票:0回答:1

在稀疏的 git checkout 中,看不到尚未通过

git sparse-checkout add
添加的文件夹(目录/树)。

我仍然可以使用

git cat-file -p HEAD
并按照树形哈希“浏览”这些文件夹。

有什么工具或技巧可以让这更舒服吗?

git gitk magit sparse-checkout
1个回答
0
投票

我在 git config 中创建了这个别名,这对我来说已经是一个足够好的解决方案了:

[alias]
    ls = ls-tree --format='%(objecttype) %(path)' HEAD

这不太好:

  • 我需要在文件夹末尾添加斜杠才能查看其内容。
  • 输出不如 ls 的输出那么紧凑。
© www.soinside.com 2019 - 2024. All rights reserved.