Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git GUI Crash Signal 6

Tags:

git

xcode

git-gui

I am using git version 1.9.2 with Xcode6-Beta3.

At beginning, git gui works properly.

For some reason (which I don't know...)

when typing "git gui" on Terminal,

I got the following crash message:

* Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Error (1000) creating window shape'

SOME CALL STACK INFO

libc++abi.dylib: terminating with uncaught exception of type NSException error: git-gui died of signal 6

Most suggestions I found are about "git-gui died of signal 11".

Please let me know if any suggestion or question.

Thank you for precious time on my question (or crash)

like image 812
willSapgreen Avatar asked Jul 09 '14 04:07

willSapgreen


2 Answers

This appears to happen when git-gui can't create the window in its last position. In my case, it is because the window location is negative. I have multiple monitors, one of which is to the upper left of the primary.

You can unset it with this:

git config --local --unset gui.geometry

The other answer "works" because it doesn't take the config into account. It avoids the issue, but doesn't actually fix it.

like image 168
Tom Kerr Avatar answered Oct 15 '22 15:10

Tom Kerr


I found a way to use git GUI in this situation. Instead of launching git GUI on the directory of the git repository by the terminal, you can launch git GUI on other directory and use "Open Existing Respository" to open the directory of the git repository.

Please let me know if any question.

like image 28
willSapgreen Avatar answered Oct 15 '22 15:10

willSapgreen