https://github.com/jolovicdev/nora
Small Version Control System in Go
https://github.com/jolovicdev/nora
Last synced: 11 months ago
JSON representation
Small Version Control System in Go
- Host: GitHub
- URL: https://github.com/jolovicdev/nora
- Owner: jolovicdev
- Created: 2024-10-23T18:01:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-23T18:22:54.000Z (over 1 year ago)
- Last Synced: 2024-10-24T03:13:54.872Z (over 1 year ago)
- Language: Go
- Size: 1.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nora V1 - Version Control System
**Nora** is an small version tracking system that I'm developing while learning Go.
Inspired by Git.
## Core Concepts
| Nora | Traditional VCS |
| --------- | --------------- |
| Snapshot | Commit |
| Timeline | Branch |
| Story | Repository |
| Preparing | Staging |
## Commands
```bash
./nora init # Start a new story
./nora prepare # Prepare files for snapshot (single, multiple, or '.' for all)
./nora forget # Remove files from tracking
./nora capture # Create a new snapshot
./nora recall # View previous snapshots
./nora status # Check current story status
./nora diff # Check for line changes between file in folder and prepared file. (Myers algorithm)
```
## Get started
```bash
make build # Build the project
make run # Run the project
```