如何将gedit配置为git core.editor?

我将gedit配置为git core.editor.
git config --global core.editor "gedit"

这工作正常,除非已经有一个gedit窗口打开.在这种情况下,COMMIT_EDITMSG在现有窗口中打开,gedit立即返回. Git以空提交消息结束,并失败.

这个网站(http://fabianschuiki.wordpress.com/2012/05/20/use-gedit-as-git-editor/)建议使用“gedit -s -w”,但是我没有这些选项(而且 – 新窗口不起作用):

$gedit -V
gedit - Version 2.28.4

$gedit --help
Usage:
  gedit [OPTION...] [FILE...] - Edit text files

Help Options:
  -h,--help                      Show help options
  --help-all                      Show all help options
  --help-gtk                      Show GTK+ Options
  --help-sm-client                Show session management options

Application Options:
  -V,--version                   Show the application's version
  --encoding=ENCODING             Set the character encoding to be used to open the files listed on the command line
  --list-encodings                display list of possible values for the encoding option
  --new-window                    Create a new toplevel window in an existing instance of gedit
  --new-document                  Create a new document in an existing instance of gedit
  --display=disPLAY               X display to use

解决方法

解决这个问题的最简单的方法升级gedit(在Ubuntu 13.10中是3.8.3)

在3.x中,-s(独立)和-w(等待)可用.
这允许(如commentedFortisimo):

git config --global core.editor "gedit -w -s"

由于Gábor Lipták评论below,这与gedit3一起使用,它与以下设备一起安装:

sudo apt-get install gedit-common/trusty 
sudo apt-get install gedit/trusty

(在Linux Mint上)

相关文章

在Linux上编写运行C语言程序,经常会遇到程序崩溃、卡死等异...
git使用小结很多人可能和我一样,起初对git是一无所知的。我...
1. 操作系统环境、安装包准备 宿主机:Max OSX 10.10.5 虚拟...
因为业务系统需求,需要对web服务作nginx代理,在不断的尝试...
Linux模块机制浅析 Linux允许用户通过插入模块,实现干预内核...
一、Hadoop HA的Web页面访问 Hadoop开启HA后,会同时存在两个...