如何禁用 VSCode Git 变基 UI
How To Disable VSCode Git Rebase UI
如何禁用 VS Code 的 Interactive Rebase UI?
我希望 return 回到以前 运行 git rebase -i
在 VS Code 中打开文本文件的体验。
根据this issue,这实际上是由GitLens扩展引起的,而不是VSCode。您可以通过将此添加到 settings.json:
来修复它
"workbench.editorAssociations": {
"git-rebase-todo": "default"
}
这在 GitLens 版本 11.0.2 中发生了变化:https://github.com/eamodio/vscode-gitlens/discussions/1260
To disable the Interactive Rebase Editor use the GitLens: Disable Interactive Rebase Editor
command from the command palette (ctrl+shift+p
or cmd+shift+p
).
如何禁用 VS Code 的 Interactive Rebase UI?
我希望 return 回到以前 运行 git rebase -i
在 VS Code 中打开文本文件的体验。
根据this issue,这实际上是由GitLens扩展引起的,而不是VSCode。您可以通过将此添加到 settings.json:
来修复它"workbench.editorAssociations": {
"git-rebase-todo": "default"
}
这在 GitLens 版本 11.0.2 中发生了变化:https://github.com/eamodio/vscode-gitlens/discussions/1260
To disable the Interactive Rebase Editor use the
GitLens: Disable Interactive Rebase Editor
command from the command palette (ctrl+shift+p
orcmd+shift+p
).