git-ai-project/git-ai

▲ 23 stars today★ 2,784⑂ 294

A Git extension for tracking the AI-generated code in your repos

About git-ai-project/git-ai

git-ai-project/git-ai is an open-source project on GitHub, mainly written in Rust. A Git extension for tracking the AI-generated code in your repos It currently holds 2,784 stars and 294 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the Today's Trending board, currently at rank #63 with 23 new stars today.

GitHub Repository Details

Repository git-ai-project/git-ai · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

git-ai https://github.com/git-ai-project/git-ai/blob/HEAD/Discord

https://github.com/git-ai-project/git-ai/blob/HEAD/Git AI Logo

Git AI is an open source git extension that tracks the AI-generated code in your repositories. After installing the extension, every line of AI code is linked to the agent, model, and prompts that generated it — so you never lose the intent, requirements, and architecture decisions behind your code.

Just prompt and commit — no workflow changes:

git commit

[hooks-doctor 0afe44b2] wsl compat check
2 files changed, 81 insertions(+), 3 deletions(-)

you ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ai 6% 94%

git ai blame /src/log_fmt/authorship_log.rs

cb832b7 (Aidan Cunniffe      2025-12-13  133) pub fn execute_diff(
cb832b7 (Aidan Cunniffe      2025-12-13  134)     repo: &Repository,
cb832b7 (Aidan Cunniffe      2025-12-13  135)     spec: DiffSpec,
fe2c4c8 (Aidan Cunniffe      2025-12-02  136)     format: DiffFormat,
fe2c4c8 (Aidan Cunniffe      2025-12-02  137) ) -> Result<…> {
fe2c4c8 (claude              2025-12-02  138)     // Resolve commits
fe2c4c8 (claude              2025-12-02  139)     let (from, to) = match spec {
fe2c4c8 (claude              2025-12-02  140)         DiffSpec::TwoCommit(s, e) => {
fe2c4c8 (claude              2025-12-02  141)             let from = resolve(repo, &s)?;

Install

Mac, Linux, Windows (WSL)

curl -sSL https://usegitai.com/install.sh | bash

Windows

powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://usegitai.com/install.ps1 | iex"

No per-repo setup or git hooks required. Commit with the Agent, git, or your favorite git client. Attribution will be linked to commits automatically.

The Git AI standard is supported by:

https://github.com/git-ai-project/git-ai/blob/HEAD/Claude Code https://github.com/git-ai-project/git-ai/blob/HEAD/Codex https://github.com/git-ai-project/git-ai/blob/HEAD/Cursor https://github.com/git-ai-project/git-ai/blob/HEAD/GitHub Copilot https://github.com/git-ai-project/git-ai/blob/HEAD/OpenCode
https://github.com/git-ai-project/git-ai/blob/HEAD/Pi https://github.com/git-ai-project/git-ai/blob/HEAD/Windsurf https://github.com/git-ai-project/git-ai/blob/HEAD/Droid https://github.com/git-ai-project/git-ai/blob/HEAD/Amp https://github.com/git-ai-project/git-ai/blob/HEAD/Gemini
https://github.com/git-ai-project/git-ai/blob/HEAD/Continue https://github.com/git-ai-project/git-ai/blob/HEAD/Junie https://github.com/git-ai-project/git-ai/blob/HEAD/Rovo Dev https://github.com/git-ai-project/git-ai/blob/HEAD/Firebender + Add an Agent

Our Choices

Want to learn more?

https://github.com/git-ai-project/git-ai/blob/HEAD/Meet the maintainers

Documentation

Attribution Stats

Line-level AI-attribution let you track AI-code through the full SDLC. Track how much AI code gets accepted, committed, through code review, and into production — to identify which tools and practices work best.

git ai stats --json
git ai stats <start_sha>..<end_sha> --json

Calculates % AI-code, AI-lines generated vs committed, accepted rates, human overrides broken down by tool and model. Learn more: Stats command reference docs.

Example JSON output
{
  "human_additions": 28,
  "ai_additions": 76,
  "ai_accepted": 47,
  "git_diff_deleted_lines": 34,
  "git_diff_added_lines": 104,
  "tool_model_breakdown": {
    "claude_code/claude-sonnet-4-5-20250929": {
      "ai_additions": 76,
      "ai_accepted": 47
    }
  }
}

AI Blame

Git AI blame is a drop-in replacement for git blame that shows AI attribution for each line. It supports all standard git blame flags.

git ai blame /src/log_fmt/authorship_log.rs
cb832b7 (Aidan Cunniffe 2025-12-13 08:16:29 -0500  136)     format: DiffFormat,
cb832b7 (Aidan Cunniffe 2025-12-13 08:16:29 -0500  137) ) -> Result {
fe2c4c8 (claude         2025-12-02 19:25:13 -0500  138)     // Resolve commits to get from/to SHAs
fe2c4c8 (claude         2025-12-02 19:25:13 -0500  139)     let (from_commit, to_commit) = match spec {
fe2c4c8 (claude         2025-12-02 19:25:13 -0500  140)         DiffSpec::TwoCommit(start, end) => {

https://github.com/git-ai-project/git-ai/blob/HEAD/Git AI VS Code extension showing color-coded AI blame in the gutter

There are community plugins that display AI-attribution in popular IDEs, color-coded by agent session. Hover over a line to see the raw prompt or summary.

Supported Editors


For teams and enterprises

https://github.com/git-ai-project/git-ai/blob/HEAD/Get early access

We built Git AI for Teams to make it easy to roll out Git AI across your organization. Just connect GitHub, GitLab, Bitbucket, or Azure DevOps and get aggregate insights across all your repositories, plus the full trace of every agent session—from prompt all the way to production.

https://github.com/git-ai-project/git-ai/blob/HEAD/Screenshot 2026-07-29 at 3 48 26 PM

FAQs

How does it work?

1. Coding Agents call git-ai checkpoint whenever they write code or modify files with bash scripts. 1. On commit, Git AI stores line-level attribution data in Git Notes, linking each line of AI-generated code to the agent, model, and session that created it. Run git log --show-notes="ai" to see them. 1. Git AI moves and merges line-level attributions when you squash, merge, reset, rebase, stash, cherry-pick, etc. so your AI code is always accurately tracked.

Git AI does not use AI or heuristics to "detect" AI code — the Agents report exactly which lines they wrote, providing the most accurate, explicit attribution possible.

Does the agent have to commit for Git AI to attribute the code?

No. Git AI works no matter how you commit — your Git client, the Git CLI, and your own Git aliases are all supported.

Git AI notes are attached to commits — how are attributions preserved when I rebase, squash, stash, cherry-pick, etc.?

Git AI analyzes the final state of the code after the operation completes and copies/merges the attributions into a Git Note for any updated commits. The entire system is eventually consistent and does not add latency to git operations.

Can I use this on my own?

Yes. Git AI is free and open source, works locally, and requires no login or team setup.

Is there a performance impact?

No. Git AI does not use Git hooks and it does not wrap Git, so you won't see any overhead on your Git commands.

Do I have to set up agent hooks?

Nope — Git AI manages the agent hooks and checks/updates them daily. If you want to trigger this yourself (ie just installed a new agent) run git ai install-hooks.

Who uses this?

Hundreds of engineering teams (including many in the Fortune 100) use Git AI to understand their AI usage and make agents more effective on their codebase.

What's the difference between the open source CLI and the teams version?

The CLI accurately attributes AI code on every commit. The teams version adds a secure prompt store and joins in data from across the SDLC — tying token spend to individual Pull Requests, calculating % AI by PR, team, and repo, and connecting signals like amount of rework during code review, and even tying incidents back to the AI session that caused them. Self-host it or run it in our cloud: connect your SCM and get aggregate stats across thousands of repos plus full observability into everything your coding agents do.

Who built this?

Aidan and Sasha — say hi in Discord or set up a Meet the maintainers call.

What are the capabilities and known limitations?

Git AI provides line-level attribution for AI-generated code - whether it is written with an edit tool or a bash command. When a Git rewrite operation is run (rebase, stash, squash --merge, etc) Git AI will move and merge attributions so nothing is lost.

Here is a full breakdown of what is supported today:

| Capability | Status | Notes | | --------------------------------------------------------------- | ------ | ---------------------------------------------------------------------------- | | Edit / Write / Patch tools | ✅ | Line-level attribution recorded automatically. | | Files created via Bash | ✅ | May not work if the agent is not operating from the repository root. | | Git worktrees | ✅ | Attribution maintained across linked worktrees. | | Background Agents | ✅ | See docs for Claude Web, Codex Cloud, Cursor Agent, and Devin. | | Attribute lines from multiple Agent Sessions in the same commit | ✅ | | | Record which lines a human overrode | ✅ | | | Attribute sessions that produced no code | ✅ | Records token usage and session activity even when no code is accepted. | | Accepted rate per session | ✅ | | | Added and deleted lines per session | ✅ | | | Tool-call level attribution | ✅ | Resolves attributed lines to the tool call that generated them. | | Tokens and cost per commit and PR | ✅ | Aggregates token usage and cost across the sessions behind each commit/PR. | | Formatters | ✅ | Formatting will not change attribution to human. | | Multi-repo root | ⚠️ | If you run an agent that edits multiple repos, Bash attributions only work when the agent runs each command with its cwd inside that repo. |

Git Rewrite Operations:

| Operation | Status | Notes | | --------------------------------------------------------------- | ------ | ---------------------------------------------------------------------------- | | git rebase | ✅ | Attribution preserved. View Code | | git cherry-pick | ✅ | Attribution preserved. View Code | | git stash / git stash pop | ✅ | Attribution preserved. View Code | | git merge --squash | ✅ | Attribution preserved. View Code | | git reset --soft | ✅ | Attribution preserved. View Code | | git reset --mixed | ✅ | Attribution preserved. View Code | | git reset --hard | ✅ | Attribution preserved for commits that remain in history. View Code | | git merge (merge commit) | ✅ | Attribution preserved. View Code | | git commit --amend | ✅ | Attribution preserved, including unstaged and partially staged changes. View Code | | git checkout / git switch (branches) | ✅ | Attribution follows the working tree across branch changes. View Code | | git pull (fast-forward / --rebase) | ✅ | Attribution preserved, including autostashed changes. View Code | | git push / git fetch | ✅ | Attribution notes synced to/from the remote. View Code | | git mv | ❌ | Renames are not yet tracked; attribution does not follow the moved file. | | git filter-branch / git filter-repo | ❌ | Bulk history rewrites are not tracked. | | git replace | ❌ | Object replacements are not tracked. |

GitHub, GitLab, Bitbucket, Azure DevOps:

| Capability | Status | Notes | | --------------------------------------------------------------- | ------ | ---------------------------------------------------------------------------- | | Squash and Merge | ✅ | Requires Git AI for Teams or Open Source CI Actions to preserve attribution. | | Rebase and Merge | ✅ | Requires Git AI for Teams or Open Source CI Actions to preserve attribution. |

License

Apache 2.0

GitHub Stars & Activity

2,784Stars
294Forks
0Open issues
RustLanguage

GitHub Popularity

GitHub stars2,784
Forks294
Open issues0
Primary languageRust
License-
Stars gained today23
Created-
Last pushed-

Trending History

Daily boardrank #63 · ▲ 23 stars

Related AI Projects

1

openai / codex

Rust★ 124,542⑂ 19,253▲ 314 stars
2

rtk-ai / rtk

Rust★ 80,633⑂ 5,111▲ 190 stars
3

cjpais / Handy

Rust★ 31,729⑂ 2,882▲ 83 stars
4

RightNow-AI / openfang

Rust★ 18,238⑂ 2,291▲ 7 stars
5

max-sixty / worktrunk

Rust★ 7,866⑂ 272▲ 128 stars
6

pacifio / atlas

Rust★ 4,734⑂ 282▲ 91 stars
7

alphaXiv / OpenResearch

Rust★ 3,638⑂ 237▲ 531 stars
8

obra / superpowers

Shell★ 287,295⑂ 25,690▲ 522 stars

More AI Rankings