Is it possible to show the similarity index of two files in a Git repository using git diff? According to the man pages, git diff -p may produce patches with this information in certain cases, but the following command for example does not contain the similarity index information:
git diff -p --no-index a b
Where a and b are two files known to the repository. Is it possible to let Git calculate and report this similarity index between two existing files in a repository?