标签: regex git file parsing
如何阅读git index文件并提取文本文件的所有路径?
git index
除了
git ls-files> out.txt
我的意思是使用正则表达式或其他东西吗?
答案 0 :(得分:1)
要查看索引文件的内容,请使用命令git ls-files 假设您使用的是Windows,Linux或Mac,则可以使用git ls-files > out.txt将命令的输出重新路由到文本文件中。
git ls-files
git ls-files > out.txt
请参阅:What does the git index contain EXACTLY?