Metadata-Version: 2.1
Name: xedix-versioning-system
Version: 0.1.2
Summary: A simple version control system
Author-email: Juraj Kollár <mostypc7@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# XediX Versioning System

A lightweight version control system implemented in Python.

## Installation

```bash
pip install xedix-versioning-system
```

## Usage

After installation, you can use the `xvs` command:

```bash
xvs branch main                            # Switch to or create 'main' branch
xvs commit "file1.txt" "Initial commit"    # Commit changes
xvs stage "file1.txt" "Work in progress"   # Stage changes
xvs init
xvs status
```
