Skip to main content

A beautiful and simple version control system with a stunning terminal interface

Project description

SimpleVCS

A simple version control system written in Python that provides basic VCS functionality similar to Git - now with a beautiful modern terminal interface!

✨ New in Version 1.3.0

Enhanced Visual Experience - SimpleVCS now features an even more stunning terminal interface:

  • 🎨 Enhanced Init - Beautiful header, tree structure, and quick start guide
  • 📜 Gorgeous Log - Double-bordered tables with highlighted current commit and legend
  • 💡 Rich Help - Custom help interface with examples and organized commands
  • 🌈 Professional Design - Centered headers, better spacing, and visual hierarchy
  • Better UX - Empty state messages, statistics, and helpful tips throughout

Features

  • Initialize repositories
  • Add files to staging area
  • Commit changes with messages or timestamps
  • View commit history with detailed information
  • Show differences between commits
  • Repository status tracking
  • Cross-platform compatibility
  • Both CLI and Python API support
  • Quick revert to any previous commit
  • Create and restore from snapshots
  • Automatic object compression to save space
  • Simplified workflow compared to Git

Installation

From PyPI (when published)

pip install simple-vcs

From Source

# Clone the repository
git clone https://github.com/muhammadsufiyanbaig/simple_vcs.git
cd simple_vcs

# Install in development mode
pip install -e .

# Or install normally
pip install .

Quick Start

# Initialize a new repository
svcs init

# Create a sample file
echo "Hello World" > hello.txt

# Add file to staging area
svcs add hello.txt

# Commit the changes
svcs commit -m "Add hello.txt"

# View commit history
svcs log

Usage

Command Line Interface

Repository Management

# Initialize a new repository in current directory
svcs init

# Initialize in specific directory
svcs init --path /path/to/project

File Operations

# Add single file
svcs add filename.txt

# Add multiple files
svcs add file1.txt file2.py file3.md

# Check repository status
svcs status

Commit Operations

# Commit with message
svcs commit -m "Your commit message"

# Commit with auto-generated timestamp
svcs commit

# View commit history
svcs log

# View limited commit history
svcs log --limit 5

Viewing Differences

# Show diff between last two commits
svcs diff

# Show diff between specific commits
svcs diff --c1 1 --c2 3

# Show diff between commit 2 and latest
svcs diff --c1 2

Advanced Operations

# Quickly revert to a specific commit
svcs revert 3

# Create a snapshot of current state
svcs snapshot

# Create a named snapshot
svcs snapshot --name my_backup

# Restore from a snapshot
svcs restore path/to/snapshot.zip

# Compress stored objects to save space
svcs compress

Python API

from simple_vcs import SimpleVCS

# Create VCS instance
vcs = SimpleVCS("./my_project")

# Initialize repository
vcs.init_repo()

# Add files
vcs.add_file("example.txt")
vcs.add_file("script.py")

# Commit changes
vcs.commit("Initial commit with example files")

# Show commit history
vcs.show_log()

# Show differences between commits
vcs.show_diff(1, 2)

# Check repository status
vcs.status()

# Quick revert to a specific commit
vcs.quick_revert(2)

# Create a snapshot of current state
vcs.create_snapshot()
vcs.create_snapshot("my_backup")

# Restore from a snapshot
vcs.restore_from_snapshot("my_backup.zip")

# Compress stored objects to save space
vcs.compress_objects()

Advanced Usage

Working with Multiple Files

from simple_vcs import SimpleVCS
from simple_vcs.utils import get_all_files

vcs = SimpleVCS()
vcs.init_repo()

# Add all Python files in current directory
python_files = [f for f in get_all_files(".") if f.endswith('.py')]
for file in python_files:
    vcs.add_file(file)

vcs.commit("Add all Python files")

Repository Structure

When initialized, SimpleVCS creates a .svcs directory containing:

.svcs/
├── objects/          # File content storage (hashed)
├── commits.json      # Commit history and metadata
├── staging.json      # Currently staged files
└── HEAD             # Current commit reference

Requirements

  • Python 3.7 or higher
  • click>=7.0 (for CLI functionality)
  • rich>=10.0.0 (for beautiful terminal interface)

Development

Setting up Development Environment

# Clone the repository
git clone https://github.com/muhammadsufiyanbaig/simple_vcs.git
cd simple_vcs

# Create virtual environment
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install in development mode
pip install -e .

# Install development dependencies
pip install pytest pytest-cov black flake8

Running Tests

# Run all tests
pytest

# Run with coverage
pytest --cov=simple_vcs

# Run specific test file
pytest tests/test_core.py

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Add tests for your changes
  5. Ensure tests pass (pytest)
  6. Commit your changes (git commit -m 'Add amazing feature')
  7. Push to the branch (git push origin feature/amazing-feature)
  8. Open a Pull Request

Publishing to PyPI

# Install build tools
pip install build twine

# Build the package
python -m build

# Upload to PyPI (requires PyPI account)
twine upload dist/*

Limitations

This is a simple implementation for educational purposes. It lacks advanced features like:

  • Branching and merging
  • Remote repositories
  • File conflict resolution
  • Large file handling
  • Advanced diff algorithms

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Muhammad Sufiyan Baig - send.sufiyan@gmail.com

Project Link: https://github.com/muhammadsufiyanbaig/simple_vcs

Changelog

Version 1.3.0

  • Enhanced Init Command: Beautiful header, tree visualization, and quick start guide
  • Gorgeous Log Display: Double-bordered tables with current commit highlighting
  • Custom Help Interface: Rich-formatted help with organized commands and examples
  • Better Visual Hierarchy: Centered headers, improved spacing, and alignment
  • Enhanced Empty States: Helpful messages when no commits exist
  • Statistics Display: Show total commits, current commit, and filters in log
  • Legend Support: Clear explanations of symbols and formatting
  • Professional Polish: Refined colors, borders, and overall presentation

Version 1.2.0

  • Beautiful Terminal Interface: Complete visual overhaul with Rich library
  • Colored Output: Green for success, yellow for warnings, red for errors
  • Elegant Tables: Commit history, status, and diffs in formatted tables
  • Styled Panels: Information displayed in bordered panels with rounded corners
  • Enhanced Commands: All commands now have beautiful, professional output
  • Better UX: Clear visual hierarchy and consistent formatting
  • Windows Compatible: No problematic Unicode characters
  • Enhanced Help: Detailed descriptions and examples for all commands

Version 1.1.0

  • Added quick revert functionality to go back to any commit instantly
  • Added snapshot creation and restoration features
  • Added automatic object compression to save disk space
  • Improved CLI with new commands (revert, snapshot, restore, compress)
  • Enhanced documentation and examples
  • Fixed CLI entry point issue for direct terminal usage

Version 1.0.0

  • Initial release
  • Basic VCS functionality (init, add, commit, log, diff, status)
  • CLI and Python API support
  • Cross-platform compatibility

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

simple_vcs-1.3.0.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_vcs-1.3.0-py3-none-any.whl (15.6 kB view details)

Uploaded Python 3

File details

Details for the file simple_vcs-1.3.0.tar.gz.

File metadata

  • Download URL: simple_vcs-1.3.0.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for simple_vcs-1.3.0.tar.gz
Algorithm Hash digest
SHA256 ab399e098a72ef6aa8adde74b665b094c4a2243e7f0f3b0fb88850351c9e69b5
MD5 eb9602677808e3e86a139a4c6aab227e
BLAKE2b-256 b7e2741eb16b2bddb40a11fc63ba1cd667edc6580f9578c99d0da05fccf70652

See more details on using hashes here.

File details

Details for the file simple_vcs-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: simple_vcs-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for simple_vcs-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0c9b65f9c87a5331e97cdfd3fd3ddb0599f4e86dc462b79051cab168a5afb2d1
MD5 0d0767eca5ef4631da516e1206ae087b
BLAKE2b-256 3bdddd638820b10f7e72c5de57f026aceea306ca5e74af13dfec6796a4ec26a2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page