web-dev-qa-db-ja.com

geditをgitcore.editorとして設定する方法は?

Geditをgitcore.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
21
Demyn

これを解決する最も簡単な方法は、geditをアップグレードすることです(Ubuntu 13.10では3.8.3です)。

3.xでは、-s(スタンドアロン)および-w(待機)が利用可能です。
これにより、( commented by Fortisimo )が可能になります。

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

GáborLipták コメント 以下 のように、これはgedit3で機能します。

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

(Linux Mintの場合)

24
VonC

VonCの回答はすべてクレジットですが、-w ubuntu 16.04でgedit(3.18)がクラッシュします。ただし、問題なく動作します。

git config --global core.editor "gedit -s"
23
Arnaud P