24

我已将 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”,但我没有这些选项(和--new-window 不起作用):

$ 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
4

3 回答 3

31

所有功劳归功于 VonC 的回答,但-w在我的 ubuntu 16.04 上导致 gedit (3.18) 崩溃。工作正常,但没有:

git config --global core.editor "gedit -s"
于 2017-01-04T17:02:09.467 回答
25

解决此问题的最简单方法是升级gedit(使用 Ubuntu 13.10 为 3.8.3)

在 3.x 中,-s(standalone) 和-w(wait) 可用。
这允许(如Fortisimo评论

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

正如Gábor Lipták下面的评论,这适用于 gedit3,它安装在:

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

(在 Linux Mint 上)

于 2013-10-18T19:20:17.370 回答
1

对于那些感兴趣的人:在 ubuntu 18 下,带有 -w 的 gedit 在段错误下崩溃

在此处输入图像描述

但带 -s 很迷人

所以请这样做:

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

于 2021-01-29T17:14:38.690 回答