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(スタンドアロン) と-w(待機) が使用可能です。
これにより、次のことが可能になります ( 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 に答える