如何使git使用TextMate作为默认的提交编辑器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使git使用TextMate作为默认的提交编辑器相关的知识,希望对你有一定的参考价值。

Now when you do a git commit without specifying a commit message, TextMate will pop-up and allow you to enter a commit message in it. When you save the file and close the window, the commit will go through as normal. (If you have another text editor you prefer instead, just change the “mate -w” line to the preferred one)

For those curious what the -w argument is about, it tells the shell to wait for the mate process to terminate (the file to be saved and closed).
  1. git config --global core.editor "mate -w"

以上是关于如何使git使用TextMate作为默认的提交编辑器的主要内容,如果未能解决你的问题,请参考以下文章

将 Visual Studio Code 设置为我的 Mac 的默认编辑器(包括编辑 Git 提交)

更改终端中打开的文件的默认编辑器? (例如,将其设置为 TextEdit/Coda/Textmate)

如何在 MacOS 中将 git 的默认代码编辑器更改为 coderunner4(一个 macOS 应用程序)

如何编辑以前的 git 提交? [复制]

如何在 Debian 中配置 Git 以默认使用 Nano 或 Vim? [复制]

Git:如何使外部存储库和嵌入式存储库作为通用/独立存储库工作?