How to show full-file git blame in vs code

GitVisual Studio-Code

Git Problem Overview


At one point I found a way to show line-by-line git blame within vscode. I now cannot recall or find the means with which to do that. I have the Git Blame extension, but that only shows blame on a single selected line.

Git Solutions


Solution 1 - Git

Use Gitlens extension. It supports various options. Once installed, you can use Alt+B to show full file blame information.

Solution 2 - Git

On Mac, if you have the GitLens plugin, it's CommandOptionGB:

enter image description here

Solution 3 - Git

Add the annotator extension. Here is the marketplace link to add it.

Solution 4 - Git

You can view commit history for an individual file without a plugin using the Timeline view.

enter image description here

See https://stackoverflow.com/a/60013101/337934 for more information.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDouglasView Question on Stackoverflow
Solution 1 - GitRobinView Answer on Stackoverflow
Solution 2 - GitmilanView Answer on Stackoverflow
Solution 3 - GitThameur SaadiView Answer on Stackoverflow
Solution 4 - GitSamBView Answer on Stackoverflow