解析git索引文件并保存到文本文件

时间:2015-11-29 17:21:31

标签: regex git file parsing

如何阅读git index文件并提取文本文件的所有路径?

除了

  

git ls-files> out.txt

我的意思是使用正则表达式或其他东西吗?

1 个答案:

答案 0 :(得分:1)

要查看索引文件的内容,请使用命令git ls-files 假设您使用的是Windows,Linux或Mac,则可以使用git ls-files > out.txt将命令的输出重新路由到文本文件中。

请参阅:What does the git index contain EXACTLY?