Take the 2-minute tour ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

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)

share|improve this question

1 Answer 1

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.