git-delta - Man Page
Lists changed files
Examples (TL;DR)
- 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
Author
Written by Ivan Malopinsky <hello@imsky.co>
Reporting Bugs
See Also
Referenced By
October 2017 Git Extras