I want to know how to create a PATCH for the difference file I got by comparing two binary files. $cmp -l > output file name
I checked for text files \'diff\" can be
If your repository, or package is using git you can make binary diff with git diff --patch --binary old_dir patched_dir Of course you can also use it with commits git diff --patch --binary commit1 commit2
git diff --patch --binary old_dir patched_dir
git diff --patch --binary commit1 commit2