How do I hide the git blame timeline in vscode?

Viewed 5577

I use vscode. Sometimes I seem to click or type something accidentally and a timeline view (similar to the one described in How can I view the Git history in Visual Studio Code?) appears.

enter image description here

How do I close the timeline view?

I thought the option to hide the timeline would be in View > Appearance but I can't see any references to 'timeline' history' 'commits' etc.

Right now I just close the file and reopen it but I'm sure there's a proper solution.

4 Answers

I also unintentionally opened blame history and didn't know how.

You can open and close the latest blame by clicking the message above the first line in a file - see red area in the screenshot. This may be why the timeline is opening unexpectedly.

enter image description here

You probably hit the shortcut key for the command: GitLens: Toggle File Blame Annotations

enter image description here

Click on the Toggle file blame on the right upper corner of the Visual Studio code (1.67)

[version 1.52.1] Right-click 'TIMELINE', then click 'Hide'.

Related