what is the name of vscode extension that shows the last commit message for each line of code?

Viewed 4420

my VSCode used to show the last commit message next to each line of code.. but after I reset my Windows and re-installed the VSCode, the extension was gone. I already installed Git History by Don Jayamanne, and I can commit and push to my git repo but the commit message for each lines of code is still not there. what am I missing?

1 Answers

Check if adding the Git Lens plugin is enough to restore that feature.

I get most of Git features on VSCode from that plugin.

Here are just some of the features that GitLens provides,

  • an unobtrusive current line blame annotation at the end of the line with detailed blame information accessible via hovers
  • ...
Related