0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Git】Gitで使用するエディタの設定方法

Posted at

設定方法

GIT_EDITOR環境変数

GIT_EDITORでエディタを指定することができます。

次のようにコマンドを実行するとエディタはnanoが使用されます。

GIT_EDITOR=nano git commit

core.editor設定を記述する

次のいずれかにcore.editorを記述することでエディタを指定できます。

  • .git/config
  • ~/.gitconfigまたは~/.config/git/config
  • /etc/gitconfig

次のように指定するとvimを使用するようになります。

[core]
    editor = vim

コマンドで設定することもできます。

git config --global core.editor vim

VISUAL環境変数

VISUALでエディタを指定することができます。

次のようにコマンドを実行するとエディタはnanoが使用されます。

VISUAL=nano git commit

EDITOR環境変数

EDITORでエディタを指定することができます。

次のようにコマンドを実行するとエディタはnanoが使用されます。

EDITOR=nano git commit

優先順位

Gitのエディタ設定の優先順位は次のとおりです。

  1. GIT_EDITOR環境変数
  2. core.editor設定を記述する
    • .git/config
    • ~/.gitconfigまたは~/.config/git/config
    • /etc/gitconfig
  3. VISUAL環境変数
  4. EDITOR環境変数
  5. vi(Debian、Ubuntu の場合は editor)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?