git-delta
List files that differ from another branch.
TLDR
List files from the current checked out branch that differ from the main branch
$ git delta [main]
List files from a specific branch that differ from another specific branch
$ git delta [branch_1] [branch_2]
SYNOPSIS
git-delta [<branch>] [<filter>]
DESCRIPTION
Lists all files that differ from a branch. By default, lists files that have been added, copied, or modified as compared to the master branch.
EXAMPLES
Lists all modified and renamed files vs. master:
$ git delta master MR
Lists all deleted files vs. example:
$ git delta example D
REPORTING BUGS
<https://github.com/tj/git-extras/issues>
SEE ALSO
<https://github.com/tj/git-extras>
AUTHOR
Written by Ivan Malopinsky <hello@imsky.co>