Trying to adapt the answers from Want to exclude file from "git diff" for the --stat
flag and failing - the accepted answer (create a driver) seems un
The exclude pathspec trick, described in Making 'git log' ignore changes for certain paths, works here:
git diff --stat -- . ':(exclude)file/to/exclude.txt'
or, if you are in a subdirectory:
git diff --stat -- :/ ':(exclude,top)file/to/exclude.txt'
The latter can be spelled in various ways. For instance, this also works:
git diff --stat ':(top)' :!/file/to/exclude.txt
as does:
git diff --stat :/: :!/:file/to/exclude.txt
These are described in the gitglossary documentation under the "pathspec" section. Note that the exclude feature is new in Git version 1.9 (and slightly broken until 1.9.2). The leading /
is an alias for top
and the !
is an alias for exclude
, with the long forms requiring the parentheses. The trailing colon before the actual pathname is optional when using the single-character aliases but forbidden when using the parentheses (this rule trips me up every time—I keep wanting to use :(exclude):...
rather than :(exclude)...
). The single quotes around the (top)
and (exclude)
pathspec components above are to protect the parentheses from being interpreted by the (Unix/Linux) shells; the Windows shell may have different ideas about which characters need protection.