Skip to main content

A simple version control system with unique features for easy version management

Project description

SimpleVCS

A simple version control system written in Python that provides basic VCS functionality similar to Git.

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)

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.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.1.0.tar.gz (12.8 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.1.0-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: simple_vcs-1.1.0.tar.gz
  • Upload date:
  • Size: 12.8 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.1.0.tar.gz
Algorithm Hash digest
SHA256 b562e44f75ad4d4a358ccc61bcf6f9d38d19bba7913e8aa387aad02a0fdcbb9e
MD5 6d70e338f3da1e3053b5b566fe0c4de4
BLAKE2b-256 8de04ea5e2013182aaf3e2002980b622582118ad601608401c77dcb614985ecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simple_vcs-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 10.5 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.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dc47c21920576f918631dae5dd5179e91d22f03d5a4767b44147ef61c307d8cf
MD5 bc918729e1d3834c79c35dec44fbea0a
BLAKE2b-256 8e4deba6c11de5ebcf9089e459f1f42271ca2caeda2f69e89b3082add0405d7d

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