Ivaldi VCS
Modern version control for the modern developer
Ivaldi is a next-generation version control system designed as a Git alternative with enhanced features like timeline-based branching, content-addressable storage, and seamless GitHub integration.
Why Ivaldi?
- Intuitive Commands: Clear, descriptive command names (
forge,gather,seal) - Timeline-Based Branching: Enhanced branch management with auto-shelving
- Human-Friendly Commits: Memorable seal names like “swift-eagle-flies-high-447abe9b”
- Never Lose Work: Auto-shelving preserves changes when switching timelines
- Selective Sync: Download only the branches you need
- Modern Cryptography: BLAKE3 hashing for security and performance
- GitHub Integration: First-class GitHub support built-in
- Interactive Time Travel: Browse and navigate commits with arrow keys
Quick Example
# Initialize repository
ivaldi forge
# Stage and commit
ivaldi gather README.md
ivaldi seal "Initial commit"
# Created seal: swift-eagle-flies-high-447abe9b
# Create and switch timelines
ivaldi timeline create feature-auth
ivaldi timeline switch main
# Connect to GitHub
ivaldi portal add owner/repo
ivaldi upload
Documentation
Getting Started
Command Reference
- All Commands Overview
- Repository: forge • status • whereami • config
- Files: gather • seal • reset • exclude
- History: log • diff • travel
- Timelines: timeline • fuse
- Remote: portal • download • upload • sync • scout • harvest
Guides
Reference
Feature Highlights
Timelines Instead of Branches
Timelines are Ivaldi’s enhanced version of Git branches:
- Auto-shelving: Changes are automatically preserved when switching
- Workspace isolation: Each timeline maintains its own state
- Efficient storage: Shared content via content-addressable storage
Human-Friendly Seal Names
Every commit gets a memorable name:
swift-eagle-flies-high-447abe9b
Much easier to remember than 447abe9b1234567890abcdef!
Interactive Time Travel
Browse commits with arrow keys and create branches from any point:
ivaldi travel
# Navigate with Up/Down arrows
# Press Enter to diverge or overwrite
Intelligent Merging
Chunk-level conflict resolution without polluting your workspace:
ivaldi fuse feature-auth to main
# No conflict markers in files!
# Clean interactive resolution
Quick Reference
| Git Command | Ivaldi Command |
|---|---|
git init |
ivaldi forge |
git add |
ivaldi gather |
git commit |
ivaldi seal |
git branch |
ivaldi timeline create |
git checkout |
ivaldi timeline switch |
git merge |
ivaldi fuse |
git clone |
ivaldi download |
git push |
ivaldi upload |
git pull |
ivaldi sync |
git fetch |
ivaldi harvest |
git status |
ivaldi status |
git log |
ivaldi log |
Get Started
Ready to try Ivaldi? Head to the Getting Started Guide to begin.
Repository
View the source code and contribute on GitHub.