From a git working tree (checked out copy), I'd like to diff the current working copy tree against a different directory (which is outside).
Like so (and also with a subdirectory just for a quick compare):
git diff --no-index --stat -- $HOME/project/pink-blue/subdirectory \
$HOME/temp-copy/subdirectory
But right now it shows files added under the outside path.
While this first of all is the documented behaviour, I would be pleased if the maintained .gitignore file would be applied to ignore any added files it would cope with.
Now this may not be an option of git-diff(1) for --no-index. But is it?
As all my trials were so daunting I decided to formulate the question first.