From: Jan Engelhardt <hidden> Date: 2016-06-15 22:45:19
Hi,
in an attempt to only show only the tags in the graph, gitk barfs:
$ gitk --no-walk v2.6.25 v2.6.26
[ Error reading commits: child killed: segmentation violation ]
At least, you should say the git version, the OS and platform.
It is the child process that segfaults, you could try "git rev-list
--no-walk v2.6.25 v2.6.26" directly and even try to debug it?
Santi
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
At least, you should say the git version, the OS and platform.
Right you are. gitk 1.5.4.3 and Linux 2.6.24.7.
It is the child process that segfaults, you could try "git rev-list
--no-walk v2.6.25 v2.6.26" directly and even try to debug it?
rev-list completes without any problems. I straced gitk, and see:
git log --no-color -z --pretty=raw --topo-order
--parents --boundary --no-walk v2.6.25 v2.6.26
To reproduce:
git log [with all that arguments] >/dev/null; echo $?
Segmentation fault
139
It is fixed in v1.6.0.1-267-gec3a4ba. Bisect identified that
3131b71 fixed it:
Add "--show-all" revision walker flag for debugging
So case closed and thank you ;-)
Jan
On Mon, Sep 8, 2008 at 7:25 PM, Jan Engelhardt [off-list ref] wrote:
On Monday 2008-09-08 12:34, Santi Bejar wrote:
quoted
quoted
in an attempt to only show only the tags in the graph, gitk barfs:
Use the "List references" in the file menu.
Nope, the intention was to have gitk display something like
* Linux 2.6.26
|
* Linux 2.6.25
without any intermediate commits.
I think the only option is to generate a graft file specifying 2.6.25
as parent of 2.6.26.
I have an script that generates it. It gives an overview of the
branches/tags, where the parents of a branch/tag are the independent
branches/tags that are antecesors (search for git-overview in the
list). But currently it has a very bad performance, it could be added
to git itself like the other history simplifications, but I don´t
know.
Santi
On Mon, Sep 08, 2008 at 01:25:12PM -0400, Jan Engelhardt wrote:
rev-list completes without any problems. I straced gitk, and see:
git log --no-color -z --pretty=raw --topo-order
--parents --boundary --no-walk v2.6.25 v2.6.26
git log crashed when it tried to print the boundary commit.
It seems the bug exists in all 1.5.4.x and was fixed in 1.5.5.
The commit that fixed the bug is 3131b71 when --show-all was added
to revision log. The lines that fixed this bug are the following: