Jesse Roper
Jesse Roper

Reputation: 1309

Missing git branch indicator at bottom of Visual Studio 2017

This: https://learn.microsoft.com/en-us/visualstudio/ide/media/vside-gitinteraction.png

I couldn't find a way to enable it.

Upvotes: 4

Views: 5690

Answers (4)

Pickles
Pickles

Reputation: 591

2024 answer: Open the settings tab, search for Status Bar and check Workbench > Status Bar: Visible

VSS Settings tab

Upvotes: 0

Itay Tur
Itay Tur

Reputation: 1729

for me the solution was updating the vscode and restart.

Upvotes: 0

Jesse Roper
Jesse Roper

Reputation: 1309

Tools > Options > Environment > General

Tick "Show Status Bar"

Upvotes: 9

J. Lavoie
J. Lavoie

Reputation: 334

You should make sure your Visual Studio 2017 is up to date and that you have Git as your source control provider.

Directly from Visual Studio website

"I don't see the Add to Source Control button in the status bar.

A: The Add to Source Control button in the status bar ( Add to Source Control ) was added in Visual Studio 2017 (it was Publish in Visual Studio 2015 Update 2 and later) and will only appear when you have Git as your source control provider. If your code is already in a Git repo, you won't see the Add to Source Control button in the status bar, but the status of the current branch in your local repo instead."

Upvotes: 2

Related Questions