git: show all files changed between two commits

前端 未结 6 386
旧时难觅i
旧时难觅i 2021-01-30 00:28

A riff on git: show all changed files between two commits: I want a listing of all files that have been changed between two commits, even if they are now the same (ie, changed a

6条回答
  •  南方客
    南方客 (楼主)
    2021-01-30 01:22

    I use this command to compare all changes between two commits:

    git difftool -d

    Like a git rebase to squash all local commits into one.

提交回复
热议问题