我需要列出所有修改和更改的分支文件的帮助,但需要搜索所有提交。我正在使用的命令仅带来最后一次提交。
git show --stat nome_branch --oneline
[葡萄牙语的原始问题:紧急情况发生时,在此之前,您可以提交mas fafaçauma busca em todos os案。 O comando que estou usando traz apenas do ultimo commit。]
答案 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 ...