我将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

最佳答案

所有功劳归功于VonC答案,但-w使gedit(3.18)在我的Ubuntu 16.04上崩溃。正常工作,尽管:

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

关于git - 如何将gedit配置为git core.editor?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19455929/

10-14 03:55