Skip to content

Releases: ayushsarode/orb

v1.0.0

28 Jul 05:03

Choose a tag to compare

Orb Version Control System v1.0.0

A Git-like version control system built from scratch in Go!

Installation

Quick Install (Linux/macOS):

curl -sSL https://raw.githubusercontent.com/ayushsarode/orb/main/install.sh | bash

Manual Installation:

  1. Download the appropriate binary for your platform
  2. Make it executable: chmod +x orb-*
  3. Move to PATH: sudo mv orb-* /usr/local/bin/orb

Features

  • Initialize repositories (orb init)
  • Stage changes (orb add)
  • Create commits (orb commit)
  • View history (orb log)
  • Branch management (orb branch, orb checkout)

Getting Started

orb init
orb add .
orb commit -m "Initial commit"
orb log