On Mon, Jul 28, 2008 at 01:40:03PM +0000, Marcus Comstedt (ACROSS) (Hail Ilpalazzo!) @ Pike (-) developers forum wrote: > chiyo:/tmp/pike% git log --full-diff -M -C --until=1999-02-01 > src/modules/_math commit abca4daf0d9e7fd4965f63e5dc45c3173cc74230 > Merge: ab24694... c35e2fe... > > Ok, but what was actually changed in this commit?
you hit a merge commit, for those the diff display is usually supressed, you can get it with git show abca4daf0d9e7fd4965f63e5dc45c3173cc74230 not sure why there is only one result. > chiyo:/tmp/pike% git log --full-diff -M -C --until=1998-12-20 src/modules/math > fatal: ambiguous argument 'src/modules/math': unknown revision or path not in > the working tree. > Use '--' to separate paths from revisions > > So how do I specify a repository path rather than a working tree path > then? as the message says, use --: git log --full-diff -M -C --until=1998-12-20 -- src/modules/math greetings, martin.