Home > OS >  Remove GitHub icon from VSCode statusbar
Remove GitHub icon from VSCode statusbar

Time:05-20

How do I hide the "Publish to GitHub" cloud enter image description here

CodePudding user response:

If you're willing to install the enter image description here


If installing a new extension is a non-starter, you can right-click on the status bar and select the "Source Control" option, which will remove the cloud icon, but also all other source control-related items (including the branch name) as well. Unfortunately, there isn't a more granular way out-of-the-box to target this icon specifically.

CodePudding user response:

There is a release note including an option to hide the "Sync changes" button in the version control tab. Maybe this setting hides the icon in the status bar too?

https://code.visualstudio.com/updates/v1_61#_publish-or-sync-action-button-for-git-repositories

  • Related