Skip to content
Tool · Hosting & data

Every version is saved — nothing is ever lost.

GitHub
Hosting & data
What it is

An archive keeping every version of your website. Every change is traceable and any earlier state can be restored.

Without

There's one file on a laptop. If it's gone, the website is gone.

With

Any version from the past years can be brought back in minutes.

How it works
  1. Every change is recorded on its own

    Who changed what and when is settled. This isn't a backup, it's a chronicle.

  2. Work happens on side branches

    What isn't finished can't disturb what's running.

  3. Merging is its own step

    A branch only reaches the main line once it has been reviewed.

  4. Back to any earlier state

    Every point in the history can be restored — including last month's.

What it technically does
  1. Working state
  2. Own branch
  3. Review
  4. Main branch

New work grows on a side branch. The main branch — the one that goes live — stays untouched until something is finished.

An archive built on Git. Every change is recorded as its own entry, with time, reason and the full state of the project. You can return to any of those points, even years later.

Hard facts
Base
Git
Unit
one entry per change
History
complete
Handover
the archive goes to you
How I use it
01

Every change recorded, with date and reason

02

If something doesn't work, I step back one version

03

On handover you receive the complete archive

Where it doesn’t fit

It backs up the project, not your content. Anything in a database — appointments, enquiries, customer data — needs its own backup.

In practice
Every project

Each project has its own archive — including what you'd take with you if we stopped working together.

Neighbouring tools