A Git-based workspace state management system
Project description
git-checkpoint
A Git-based workspace state management system that provides efficient codebase state tracking and restoration capabilities.
How It Works
git-checkpoint uses Git under the hood but operates completely independently from your workspace's version control:
- Creates a separate "shadow" Git repository in a temporary directory
- Your workspace files are copied to this shadow repository for tracking
- All Git operations happen in the shadow repository, never touching your actual workspace's Git state
- When restoring checkpoints, files are copied back from the shadow repository
- Your workspace's Git repository (if any) remains completely untouched
Features
- Shadow Git repository management for non-intrusive state tracking
- Workspace state tracking with commit and restore functionality
- Efficient diff generation between states
- Smart handling of large files (LFS)
- Nested Git repository support
- Configurable file exclusion patterns
Installation
# Using poetry (recommended)
poetry add git-checkpoint
# Using pip
pip install git-checkpoint
Quick Start
from git_checkpoint import CheckpointTracker
# Initialize tracker (creates shadow repository in temp directory)
tracker = CheckpointTracker.create(
task_id="my_task",
workspace_path="/path/to/workspace"
)
# Create a checkpoint (copies current workspace state to shadow repo)
commit_hash = tracker.commit()
# Get changes between checkpoints
diffs = tracker.get_diff_set(
lhs_hash="previous_hash",
rhs_hash="current_hash"
)
# Restore to a previous state (copies files back from shadow repo)
tracker.reset_head("previous_hash")
# Clean up shadow repository when done
tracker.cleanup()
Configuration
Create a .checkpointrc file in your workspace:
enabled: true
storage_path: ".checkpoints"
ignore_patterns:
- "*.pyc"
- "__pycache__"
- "node_modules"
- ".git"
API Reference
CheckpointTracker
Constructor
def __init__(self, task_id: str, workspace_path: str)
task_id: Unique identifier for the checkpoint sessionworkspace_path: Path to the workspace to track
Methods
create
@classmethod
def create(cls, task_id: str, workspace_path: str) -> "CheckpointTracker"
Creates and initializes a new checkpoint tracker.
commit
def commit(self) -> Optional[str]
Creates a new checkpoint of the current workspace state. Returns the commit hash.
reset_head
def reset_head(self, commit_hash: str) -> None
Restores the workspace to the state of the specified commit.
get_diff_set
def get_diff_set(
self,
lhs_hash: Optional[str],
rhs_hash: Optional[str]
) -> List[DiffInfo]
Returns a list of file differences between two commits.
Development
# Install dependencies
poetry install
# Run tests
poetry run pytest tests/ -v
# Run tests with coverage
poetry run pytest tests/ -v --cov=git_checkpoint
Error Handling
The package uses custom exceptions for common error cases:
WorkspaceError: Invalid workspace configurationGitError: Git operation failuresConfigError: Configuration parsing issues
Best Practices
- Always validate workspace paths before initialization
- Use meaningful task IDs for better organization
- Handle large files appropriately using LFS
- Regularly clean up old checkpoints to manage storage
Attribution
Thank you to Cline for inspiring this package!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file git_checkpoint-0.1.2.tar.gz.
File metadata
- Download URL: git_checkpoint-0.1.2.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.6 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e92e9c3c74981aa433e3030210e65130da372da0765694cf8d27ed3bca79e0e
|
|
| MD5 |
22f21cf49f6bac070eb8eed29f2153f1
|
|
| BLAKE2b-256 |
ccec2310c6ac152bfed6c4e091c22248e1c64188c7f9b25f575b50c10403fd4f
|
File details
Details for the file git_checkpoint-0.1.2-py3-none-any.whl.
File metadata
- Download URL: git_checkpoint-0.1.2-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.6 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41dcb23fd7993c1d612d1df9fd72159c3b76470e472e8cbb4c213693a40000e8
|
|
| MD5 |
515c3f44d30c83dbd4afddcea7a2a1d0
|
|
| BLAKE2b-256 |
48cbf8120d65f74f28affbb9953ffd18201c9ae3efeadf704d0e8a3a73c87638
|