24

How do I disable VS Code's Interactive Rebase UI?

VSCode Interactive Rebase

I'm hoping to return to the previous experience where running git rebase -i opens a text file into VS Code.

Reed Dunkle
  • 3,408
  • 1
  • 18
  • 29

2 Answers2

33

According to this issue, this is actually caused by the GitLens extension, not VSCode. You can fix it by adding this to your settings.json:

"workbench.editorAssociations": {
  "git-rebase-todo": "default"
}
surj
  • 4,706
  • 2
  • 25
  • 34
7

This changed in GitLens version 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).

Reed Dunkle
  • 3,408
  • 1
  • 18
  • 29
Clintm
  • 4,505
  • 3
  • 41
  • 54