* git log -S problem
@ 2007-05-20 19:15 Johannes Sixt
2007-05-20 21:05 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Sixt @ 2007-05-20 19:15 UTC (permalink / raw)
To: git
There is something odd with -S of git log. Try this in your git.git:
$ git log --pretty=oneline -Sbuiltin-merge-base -- Makefile
71dfbf224ff980f4085f75868dc409118418731e Make merge-base a built-in.
$ git log --pretty=oneline -Smerge-base -- Makefile
e468305a954d95a26bfcdec3bc6e4bd477d95676 [PATCH] Remove the explicit ...
a3df180138b85a603656582bde6df757095618cf Rename git core commands ...
cef661fc799a3a13ffdea4a3f69f1acd295de53d Add support for alternate ...
e590d694ead8d50c2afc7086161d4ddc5d907655 Add more header dependencies.
6683463ed6b2da9eed309c305806f9393d1ae728 Do a very simple "merge-base"...
$ git version
git version 1.5.2
I had expected that the set of commits found by the second search string are a
proper superset of those found by the first one. What's wrong here? Why does
a search for 'merge-base' not find occurences of 'builtin-merge-base'?
-- Hannes
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git log -S problem
2007-05-20 19:15 git log -S problem Johannes Sixt
@ 2007-05-20 21:05 ` Junio C Hamano
2007-05-21 5:27 ` Johannes Sixt
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2007-05-20 21:05 UTC (permalink / raw)
To: Johannes Sixt; +Cc: git
Johannes Sixt <johannes.sixt@telecom.at> writes:
> There is something odd with -S of git log. Try this in your git.git:
>
> $ git log --pretty=oneline -Sbuiltin-merge-base -- Makefile
> 71dfbf224ff980f4085f75868dc409118418731e Make merge-base a built-in.
>
> $ git log --pretty=oneline -Smerge-base -- Makefile
> e468305a954d95a26bfcdec3bc6e4bd477d95676 [PATCH] Remove the explicit ...
> a3df180138b85a603656582bde6df757095618cf Rename git core commands ...
> cef661fc799a3a13ffdea4a3f69f1acd295de53d Add support for alternate ...
> e590d694ead8d50c2afc7086161d4ddc5d907655 Add more header dependencies.
> 6683463ed6b2da9eed309c305806f9393d1ae728 Do a very simple "merge-base"...
>
> $ git version
> git version 1.5.2
>
> I had expected that the set of commits found by the second search string are a
> proper superset of those found by the first one. What's wrong here? Why does
> a search for 'merge-base' not find occurences of 'builtin-merge-base'?
71dfbf224 removes one line that has "git-merge-base$X" and adds
one line that has "builtin-merge-base.o". If you count the
number of occurences of substring "builtin-merge-base" in the
preimage and the postimage, you see one addition. If you count
the same for substring "merge-base", the net difference is 0.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git log -S problem
2007-05-20 21:05 ` Junio C Hamano
@ 2007-05-21 5:27 ` Johannes Sixt
2007-05-21 7:34 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Sixt @ 2007-05-21 5:27 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git, j.sixt
On Sunday 20 May 2007 23:05, Junio C Hamano wrote:
> Johannes Sixt <johannes.sixt@telecom.at> writes:
> > I had expected that the set of commits found by the second search string
> > are a proper superset of those found by the first one. What's wrong here?
> > Why does a search for 'merge-base' not find occurences of
> > 'builtin-merge-base'?
>
> 71dfbf224 removes one line that has "git-merge-base$X" and adds
> one line that has "builtin-merge-base.o". If you count the
> number of occurences of substring "builtin-merge-base" in the
> preimage and the postimage, you see one addition. If you count
> the same for substring "merge-base", the net difference is 0.
But is this how -S is *designed* to work?
Hm, the documentation says (diff-options.txt):
-S<string>::
Look for differences that contain the change in <string>.
which can be interpreted both to match my expectations as well as the current
implementation.
-- Hannes
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-05-21 7:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-20 19:15 git log -S problem Johannes Sixt
2007-05-20 21:05 ` Junio C Hamano
2007-05-21 5:27 ` Johannes Sixt
2007-05-21 7:34 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox