Search code examples
visual-studio-code

How to remove Incoming/Outgoing changes graph in VSCode?


In July 2024, VSCode (update 1.92) introduced this new Incoming/Outgoing changes graph:

I don't really need it since I use another tool for that, and it is polluting my workspace.

Is there a way to remove it? I tried clicking around but could not find it. The update notes also don't specify a way to disable this feature.


Solution

  • Just add:

    "scm.showHistoryGraph": false
    

    to your JSON settings.

    Reference: https://github.com/microsoft/vscode/issues/224616