https://github.com/lkqm/vscode-gitblame-annotations
Display git blame in editor gutter like JetBrains IDEs.
https://github.com/lkqm/vscode-gitblame-annotations
git vscode-extension
Last synced: 2 months ago
JSON representation
Display git blame in editor gutter like JetBrains IDEs.
- Host: GitHub
- URL: https://github.com/lkqm/vscode-gitblame-annotations
- Owner: lkqm
- License: mit
- Created: 2025-03-26T11:16:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-28T09:06:30.000Z (3 months ago)
- Last Synced: 2026-03-28T13:39:49.028Z (3 months ago)
- Topics: git, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=lkqm.gitblame-annotations
- Size: 436 KB
- Stars: 8
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Git Blame Annotations
Display git blame in editor gutter like JetBrains IDEs.

## Features
- Display commit information for each line.
- Hover for commit information.
- Click to view commit changes.
## Usage
1. Install `Git Blame Annotations` extension.
2. Right-click menu on line numbers.
3. Click "Annotate with Git Blame" or "Close Annotations".
4. Hover annotation view commit detail.
## Commands
- `git.blame.toggle` - Toggle Annotations (shortcut: ctrl+alt+b)
- `git.blame.show` - Annotate with Git Blame
- `git.blame.hide` - Close Annotations(shortcut: Esc)
## Develop
```
# Run & Debug
npm install
npm run compile
# Build
npm install -g @vscode/vsce
vsce package
# Publish
vsce login
vsce publish
```