Git History

by Chris Oguntolu
5
4
3
2
1
Score:Β 51/100

Description

🌿 Git management inside Obsidian β€” interactive commit graph, source control panel, file history, and diff viewer, no terminal required.

Reviews

No reviews yet.

Stats

2
stars
522
downloads
0
forks
54
days
12
days
12
days
21
total PRs
0
open PRs
1
closed PRs
20
merged PRs
0
total issues
0
open issues
0
closed issues
38
commits

Latest Version

12 days ago

Changelog

1.9.0 (2026-08-31)

Features

  • terminal startup script, and a Git identity you can see and set (#21) (d85fb01)

README file from

Github

🌿 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

πŸ“‹ 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.

  • 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