Re: git-log -p --raw broken?

Previous thread: git-rev-list diff options broken by Han-Wen Nienhuys on Tuesday, November 6, 2007 - 3:14 pm. (5 messages)

Next thread: [PATCH] Reteach builtin-ls-remote to understand remotes by Shawn O. Pearce on Tuesday, November 6, 2007 - 6:29 pm. (2 messages)
From: Han-Wen Nienhuys
Date: Tuesday, November 6, 2007 - 3:48 pm

Hi,

I'm trying to get a list of

  git diff-tree -t -r --raw COMMITTISH

where COMMITTISH comes from git-rev-list, using a limited number of
processes. The manual page suggests that I should be able to do

 git log -p --raw COMMIT-RANGE

however, when I try that, I get always get the same style output,
which is the (to me: useless) human readable output.

Am I missing something?
-- 
Han-Wen Nienhuys - hanwen@xs4all.nl - http://www.xs4all.nl/~hanwen
-

From: Han-Wen Nienhuys
Date: Tuesday, November 6, 2007 - 4:03 pm

I probably am, never mind this message.
\
-- 
Han-Wen Nienhuys - hanwen@xs4all.nl - http://www.xs4all.nl/~hanwen
-

From: Linus Torvalds
Date: Tuesday, November 6, 2007 - 4:10 pm

No, you're not *missing* anything. You have something *too much*.

Please remove the "-p" if you don't want a patch.

This works:

	git log --raw COMMIT-RANGE

(actually, most of the time you'd want to use "-r" too when you get raw 
output, but git log enables that by default)

			Linus
-

Previous thread: git-rev-list diff options broken by Han-Wen Nienhuys on Tuesday, November 6, 2007 - 3:14 pm. (5 messages)

Next thread: [PATCH] Reteach builtin-ls-remote to understand remotes by Shawn O. Pearce on Tuesday, November 6, 2007 - 6:29 pm. (2 messages)