如何列出分支中所有提交的所有更改或修改的文件

时间:2018-11-28 12:46:05

标签: git git-show

我需要列出所有修改和更改的分支文件的帮助,但需要搜索所有提交。我正在使用的命令仅带来最后一次提交。

git show --stat nome_branch --oneline

[葡萄牙语的原始问题:紧急情况发生时,在此之前,您可以提交mas fafaçauma busca em todos os案。 O comando que estou usando traz apenas do ultimo commit。]

1 个答案:

答案 0 :(得分:0)

如果您要查看供人类使用的视图,请尝试以下操作之一:

git log --name-only
git log --name-status
git log --stat

# maybe add --graph and --oneline options :
git log --oneline --graph --stat # or --name-only or --name-status ...