Skip to content

Commit e4a7e2c

Browse files
committed
init
0 parents  commit e4a7e2c

13 files changed

+3468
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist/*
2+
out/*
3+
node_modules/*
4+
.vscode-test/*

.vscode/launch.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Run Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
10+
}
11+
]
12+
}
13+

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Git VSCode Stats Extension
2+
3+
_Track and visualize your Git activity directly from VS Code._
4+
5+
A lightweight extension and CLI tool that analyzes your Git commits, tracks coding statistics, and helps you understand your productivity patterns — all within your favorite code editor.
6+
7+
### Features
8+
9+
📈 Commit frequency and time-of-day heatmaps
10+
11+
🕒 Daily/weekly/monthly coding activity stats
12+
13+
🧑‍💻 Author-specific stats for collaborative projects
14+
15+
🗃️ Per-branch and per-file metrics
16+
17+
🔌 VS Code integration with live stats
18+
19+
### Installation
20+
21+
```bash
22+
git clone https://github.com/git-quick-stats/git-vscode-stats.git
23+
```
24+
25+
Or install via VS Code Marketplace.
26+
27+
`@tbd`
28+
29+
### Development
30+
31+
- Install dependencies: `npm install`
32+
- Build: `npm run compile`
33+
- Launch in VSCode: Press `F5`

0 commit comments

Comments
 (0)