Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Git History

Chris OguntoluChris Oguntolu479 downloads

Manage Git repositories with an intuitive UI: interactive commit graph, source control panel, and diff viewer.

Add to Obsidian
Git History screenshot
  • Overview
  • Scorecard
  • Updates17

Git History for Obsidian

🌿 Git History for Obsidian

Version control for your vault, with an intuitive interface and no terminal required.

Every note you edit is tracked. You can look back at what changed and when, undo a change you regret, and keep a backup copy somewhere safe. The plugin shows all of it as a visual timeline inside Obsidian — point, click, done.


🌱 New to Git? Start here

Git is a tool that remembers every version of every file. Three ideas cover almost everything you will do:

Term What it means for your vault
📸 Commit A snapshot of your vault at one moment, with a short note about it. Like a save point you can return to.
⬆️ Push Uploads your snapshots to a backup copy, so they also exist off this computer.
⬇️ Pull Downloads snapshots you made elsewhere, for example on another computer.

A typical day needs one habit: write what changed, press Commit, press Push. Everything else in this plugin is there for the moment you want to look back.

If your vault is not a Git repository yet, run the Initialize Git repository command from Obsidian's command palette and the plugin sets one up for you.


What you get

Commit graph and source control panel

📋 Source control panel

Your changed notes, grouped and ready to commit.

  • See at a glance which notes changed, and by how much
  • Stage individual notes, whole folders, or everything at once
  • Open or close a folder and everything under it in one click, at any depth
  • Commit with a message, amend the last one, or commit and push in one step
  • Pull, push, fetch and stash from the toolbar, with progress while they run
  • Switch or create branches
  • Refreshes itself when you edit notes or come back to the window

🌳 Commit graph

The history of your vault as a timeline.

  • Every commit with its author, date, and how much changed
  • Branches and merges drawn as coloured lanes
  • Click a commit to expand it and see what it contained
  • Read a commit's files as a folder tree or a flat list, with the same folding controls as the changes list
  • Search by message, author, or commit ID

A compact version lives in the sidebar, so you can glance at recent commits without leaving what you were doing.

🕰️ File history

Pick any note and see only the commits that touched it — including the ones from before you renamed it. Available from the command palette and from the right-click menu in the source control panel.

🔍 Diff viewer

See exactly what changed in a note: old and new side by side, or as one annotated text. You can stage or undo a single block of changes instead of the whole file.

💻 Terminal — Alpha

Alpha. This one is early and I am still working on it. I am shipping it so you can try it — please tell me what breaks. Expect rough edges, and do not rely on it for anything you cannot redo by hand.

A shell inside Obsidian, opened in a panel below your note, starting in your vault's folder.

Terminal panel inside Obsidian

  • Opens from the terminal ribbon icon, the commit graph toolbar, or the Open terminal command
  • Starts in your vault's folder, so git and everything else act on your notes
  • Uses your own login shell, with your prompt, colours, and aliases
  • Resizes with the panel
  • Several sessions side by side, listed as icons along the edge of the panel
  • Give each session its own icon and colour from its right-click menu, so a row of identical shell icons stays readable
  • Drag the icons to reorder the sessions
  • A startup script in the settings is loaded into every session, in the place your own .zshrc would put it — aliases, environment variables and functions are there before the first prompt
  • Desktop only, like the rest of the plugin

If a shell does not start, the panel says which program it tried to use and what that program printed, with a Try again button next to it. The Check terminal setup command reports the same thing at any time: which search path is in use, which git and which interpreter were found, and what the terminal can do with them.


🧩 Requirements

  • Obsidian 1.7.2 or later
  • Git installed on your computer (how to install)
  • Desktop only — Git cannot run on mobile

⌨️ Commands

Available from Obsidian's command palette (Ctrl/Cmd + P).

Command What it does
Open source control Opens the sidebar panel
Open Git graph Opens the full history timeline
Commit Jumps to the panel to write a commit
Push Uploads your commits
Pull Downloads commits made elsewhere
Fetch Checks for new commits without applying them
Backup: stage all, commit & push Snapshots and uploads the whole vault in one step
Show file history Shows the history of the note you have open
Initialize Git repository Sets up version control for a vault that has none
Set Git identity Sets the name and email address Git puts on your commits
Open terminal Opens the shell panel in your vault's folder (Alpha)
Check terminal setup Reports which programs the terminal found and what it can do with them

⚙️ Settings

Identity

The name and email address Git records on every commit you make. These are not plugin settings: they are read from git config, showing whichever value applies here — your global one, or a value set for this vault, which overrides it. Each row says which of the two it is showing.

Setting What it does
Name The name recorded as the author of your commits
Email The address recorded alongside it, and what forges match commits to accounts by
Save changes to Whether an edit is written for this vault or for every repository on the computer. It starts on the config the current value comes from

If neither is set anywhere, the plugin offers to set them when it loads, and again if a commit fails for the lack of them. Both are worth having: without them, Git either refuses to commit or invents a name and an address from your computer's user name and hostname — and puts those on your commits, where no Git host can match them to your account.

Source control

Setting Default What it does
Commit message template (empty) Message used by the one-step backup
Pull strategy merge How downloaded commits are combined with yours
Auto-fetch off Check remotes for new commits in the background
Auto-fetch interval 300s How often to check
Default diff view side by side Two columns side by side, or one annotated text
Changes layout tree Files nested under their folders, or one flat row per file
Compact folders on Fold folders holding a single subfolder into one row. Tree layout only
Only list files Obsidian can open on Leave files no Obsidian view can render out of a commit's file list
Show nested repositories off List folders that are repositories of their own. They cannot be committed together with the rest of the vault
File watcher debounce 1000ms How long to wait after an edit before refreshing
Git binary (auto-detect) Path to the git the plugin runs. Empty searches the PATH your own shell uses

Terminal

Setting Default What it does
Shell (auto-detect) Path to the shell the Alpha terminal starts. Empty uses your system default
Python (auto-detect) Path to the Python 3 behind the terminal's pseudo-terminal. Empty searches for one
Pseudo-terminal Automatic Which bridge gives the shell a real terminal. Automatic takes the first that works
Startup script (empty) Shell code run at the start of every session, after your own rc files and before the first prompt
Colour new sessions off Hand every session you open the next free colour from the palette

🔒 What the plugin does on your computer

Obsidian lists what a plugin is capable of, so here is what those capabilities are used for:

  • Runs the git command. That is how every action works — it is the same program you would use in a terminal, run inside your vault's folder only.
  • Writes to the clipboard. Only when you use "Copy SHA" or "Copy path".
  • Starts a shell, if you open the Alpha terminal. Only then, and only the shell you already use, started in your vault's folder. Whatever you type into that panel runs with your own user account, exactly as it would in Terminal or iTerm. Nothing runs there on its own.

Nothing leaves your machine unless you press push, and then only to the backup location you set up yourself.


License

MIT

HealthExcellent
ReviewSatisfactory
About
Manage Git inside Obsidian: stage, commit, push, pull, fetch, stash, switch branches, and discard changes at file or folder level. Browse a GitLens-style commit graph and table with metadata, inspect file history across renames, and view syntax-highlighted side-by-side or inline diffs.
GitBackupGraph
Details
Current version
1.9.0
Last updated
7 days ago
Created
2 months ago
Updates
17 releases
Downloads
479
Compatible with
Obsidian 1.7.2+
Platforms
Desktop only
License
MIT
Report bugRequest featureReport plugin
Sponsor
Buy Me a Coffee
Author
Chris OguntoluChris Oguntoluchrisurf
chrisurf.com
GitHubchrisurf
  1. Community
  2. Plugins
  3. Git
  4. Git History

Related plugins

GitHub

GitHub Sync

Sync vault to personal GitHub.

Git

Integrate Git version control with automatic backup and other advanced features.

Time Machine

Browse, compare, and restore previous versions of your notes using built-in file-recovery snapshots.

Direct Git Sync

Sync your vault natively with a GitHub repository on both Desktop and Mobile.

Notes Sync Share

Sync and share (publish) your notes in your own private service.

Easy Git

A secure, plug-and-play way to sync individual vault folders or sections with GitHub. Private repos supported, multiple folder mappings, bidirectional sync, and conflict resolution.

Git Vault Sync

Sync your whole vault to GitHub with one click — on desktop and mobile. Interactive conflict resolution, commit preview, and auto-sync. Pure JavaScript, no system Git required.

Smart Second Brain

Chat with an agent that knows your notes, search by meaning, and see your vault grouped into topics. Runs on Ollama, OpenAI, Anthropic, and more.

YAOS

Simple real-time sync powered by your own Cloudflare Worker.

Fit

Minimalist File gIT (FIT) to sync your files across mobile and desktop devices using GitHub.