Diff –git unknown option

diff()gitoptions

when I try to run

diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c

I get unknown option (I have installed git via apt-get install git)

Best Answer

Either use

diff -u file1 file2

or

git diff branch/commit1 branch/commit2

More on git diff at https://www.kernel.org/pub/software/scm/git/docs/git-diff.html

I am not aware of any --git option however for diff and the man page doesn't show it.

Related Question