An open API service indexing awesome lists of open source software.

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.

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.

## Screnshoots
![main](./images/screenshoot1.png)
![commit](./images/screenshoot2.png)
![menu](./images/screenshoot3.png)

## Usage
1. Install `Git Blame Annotations` extension.
2. Right-click menu on line numbers.
3. Click "Annotate with GitBlame" or "Close Annotations".

## Commands
- `git.blame.toggle` - Toggle Annotations
- `git.blame.show` - Annotate with Git Blame
- `git.blame.hide` - Close Annotations

## Develop

```
# Run & Debug
npm install
npm run compile

# Build
npm install -g @vscode/vsce
vsce package

# Publish
vsce login
vsce publish
```