An open API service indexing awesome lists of open source software.

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

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.


Nora Commands Overview
Nora Additional Commands

## 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
```