在Windows系统上,默认是在`C:\Program Files\Git\etc`目录下。 2. 找到并编辑`gitconfig`文件。该文件是Git的全局配置文件,用于设置Git的全局参数。 3. 在`gitconfig`文件中,找到`[core]`部分。如果该部分不存在,可以手动添加。 4. 在`[core]`部分下添加以下内容: “` editor = 编辑器名称 “` 其中,`...
1 git config--globalcore.editor"'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin" Obviously the C:/Program Files/Notepad++/notepad++.exe part should be the path to the Notepad++ executable on your system. For example, on Windows 7 it's likely...
$ git config –global user.email “your_email@example.com” “` – 设置默认编辑器: “`shell $ git config –global core.editor “vim” “` – 设置别名: “`shell $ git config –global alias.co “checkout” $ git config –global alias.ci “commit” “` – 设置颜色: “`shell $ git...
http://stackoverflow.com/questions/10564/how-can-i-set-up-an-editor-to-work-with-git-on-windows git config 配置: git config --global core.editor C:/prog/git/npp.bat npp.bat 内容: #!/bin/sh"c:/Program Files/Notepad++/notepad++.exe"-multiInst -notabbar -nosession -noPlugin"$*...
Windows下 设置git默认的文本编辑器 git 设置默认的文本编辑器后, 当git需要你输入时, 就可以使用默认的文本编辑器了. 命令: $ git config –list 查看所有配置选项 $ git config --global core.editor "D:\nodpad++\Notepad++\notepad++.exe" 设置window下默认的文本编辑器为nodepad++...
Opens an editor to modify the specified config file; either --system, --global, --local (default), --worktree, or --file <config-file>. OPTIONS --replace-all Default behavior is to replace at most one line. This replaces all lines matching the key (and optionally the value-pattern)...
通过参数,可以定义要按哪个级别进行设置。 若要设置用户名和电子邮件,可以使用以下命令。 控制台复制 git config --global user.name "Your Name" git config --global user.email "name@xyz.com" 可以通过指定编辑器的路径来更新默认编辑器。 git config --global core.editor "path_to_editor.exe"...
$ git config--global core.editor emacs 其实就是给core.editor参数赋值为emacs而已。 而我们如果是Windows系统那么赋值就需要是该文本编译器的完整可执行路径。例如: 代码语言:javascript 复制 $ git config--global core.editor"C:\Program Files\Typora\Typora.exe" ...
当前项目的 Git 目录中的配置文件(也就是工作目录中的.git/config文件):这里的配置仅仅针对当前项目有效。每一个级别的配置都会覆盖上层的相同配置,所以.git/config里的配置会覆盖/etc/gitconfig中的同名变量。 在Windows 系统上,Git 会找寻用户主目录下的 .gitconfig 文件。主目录即 $HOME 变量指定的目录,一般都...
当前项目的 Git 目录中的配置文件(也就是工作目录中的.git/config文件):这里的配置仅仅针对当前项目有效。每一个级别的配置都会覆盖上层的相同配置,所以.git/config里的配置会覆盖/etc/gitconfig中的同名变量。 在Windows 系统上,Git 会找寻用户主目录下的 .gitconfig 文件。主目录即 $HOME 变量指定的目录,一般都...