我想从JSON格式的git repo中获取文件列表。你有任何想法如何做到这一点?
答案 0 :(得分:0)
不完全确定您要找的是
$ git ls-files | jq -MRn '[inputs]'
将生成一个JSON数组,其中包含git ls-files
返回的内容,例如
[
".gitignore",
".gitmodules",
".travis.yml",
"AUTHORS",
"COPYING",
"ChangeLog",
"Dockerfile"
]