阻止 Git Interactive Rebase 打开 Atom
Prevent Git Interactive Rebase from opening Atom
我目前正在尝试使用交互式变基压缩我的最后一次提交。但是,当我键入 git rebase -i HEAD^
时,Atom 被打开。
因为我想从 Vim 执行此操作,我如何防止 Atom 打开以便我可以从终端 window 执行变基?
请尝试git config --global core.editor "vim"
这会将 Vim 设置为您的 git 默认编辑器
您可以在此处查看更多详细信息How do I make Git use the editor of my choice for commits?
我目前正在尝试使用交互式变基压缩我的最后一次提交。但是,当我键入 git rebase -i HEAD^
时,Atom 被打开。
因为我想从 Vim 执行此操作,我如何防止 Atom 打开以便我可以从终端 window 执行变基?
请尝试git config --global core.editor "vim"
这会将 Vim 设置为您的 git 默认编辑器
您可以在此处查看更多详细信息How do I make Git use the editor of my choice for commits?