This is not a bug but a wrong configuration issue.
Most editors (including gedit, subl, atom ) should be configured with -w (--wait) parameter.
From gedit -h:
-w, --wait Open files and block process until files are closed
So the configuration command should be like this:
"git config --global core.editor gedit -w"
This is not a bug but a wrong configuration issue.
Most editors (including gedit, subl, atom ) should be configured with -w (--wait) parameter.
From gedit -h:
-w, --wait Open files and block process until files are closed
So the configuration command should be like this:
"git config --global core.editor gedit -w"