Git 无法在 /.gitconfig 文件中配置的默认文本编辑器中打开

Git not opening in the defaullt text editor as configured in the /.gitconfig file

当我输入 git 命令打开默认文本编辑器时,git 应该打开 VScode 但它实际上打开了 nano。

git 配置 --global -e

         GNU nano 5.7               /home/xyz/.gitconfig
> # This is Git's per-user configuration file. [user]
>         name =xyx
>         email = xyz@gmail.com [code]
>         editor = code --w [core]
>         autocrlf = input

任何帮助

命令 git config --global -e 不会调用 git 配置的编辑器,而是系统编辑器。

要编辑 git 中的 git 配置,您必须发出以下命令:

export EDITOR=code
git config --global -e

如果适合您,我建议您在 RC 文件中设置 EDITOR 变量。