Version Control

Looops saves every change automatically so you can browse history, preview old versions, and restore any version in one click. Branches keep experiments safe.

Looops includes full Git version control, so you can experiment freely knowing you can always go back.

How It Works

Automatic Commits

Every significant change creates a commit automatically:

  • Changes are grouped logically
  • Commit messages describe what changed
  • Full history is preserved

You don't need to know Git—it just works in the background.

Viewing History

Access your project history from the Version Control panel:

1

Open Version Control

Click the History icon in the toolbar or use the keyboard shortcut.

2

Browse Commits

See a list of all changes with timestamps and descriptions.

3

Preview Any Version

Click a commit to preview how your site looked at that point.

Key Features

Instant Rollback

Made a mistake? Rollback to any previous version with one click:

  1. Open Version Control
  2. Find the version you want
  3. Click Restore

Your project is instantly reverted. The rolled-back version becomes the new latest commit.

Branching

Create branches to experiment without affecting your main site:

Use cases:

  • Try a major redesign
  • Test new features
  • A/B testing different layouts

When you're happy, merge the branch back. If not, just delete it.

Diff View

See exactly what changed between versions:

  • Added lines highlighted in green
  • Removed lines highlighted in red
  • File-by-file breakdown

Useful for understanding what the AI modified.

Best Practices

Checkpoint Before Major Changes

Before asking the AI for a big change (like a redesign), create a manual checkpoint:

"Save this version before we start the redesign"

This gives you a clear restore point.

Use Branches for Experiments

Don't be afraid to experiment! Create a branch first:

"Create a branch called 'dark-mode-experiment'"

You can always go back to the main branch.

Next Steps