我的遥控器中有一个裸存储库。我想查看在编辑器中打开的文件并查看代码。要列出文件,请使用 git ls-files master 或 git ls-tree master。对于查看单个文件,我可以执行 git show 100644 但是如何查看目录中的文件。这是一个例子:
100644 blob 03ec70a7ab513de8d568450dd8fca93987a22da0 .gitignore
100644 blob 75a85b0137fe1ee0c60bda6dcfac78d2d59a1759 README.md
040000 tree 53a58d85bc833575fdfee86058d88a4928c6fe76 templates
如果我执行 git show 03ec70,它会显示 .gitignore 文件的内容
如果我执行 git show 53a58d,它会列出模板文件夹的内容
403.html
404.html
500.html
base.html
但是我怎样才能打开单个文件来查看它们。示例:上述情况下的 base.html