I\'m trying to apply a patch that includes binary files with git apply but only the files are added. I tried running git apply failing.patch -v and it
git apply
git apply failing.patch -v
If you use the --directory option to "git apply":
--directory=
that path is RELATIVE TO THE BASE DIRECTORY (the one containing ".git"), not relative to the current working directory. You cannot use an absolute path either.
This is completely undocumented and took me hours to discover.