Releases: ayushsarode/orb
Releases · ayushsarode/orb
v1.0.0
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 | bashManual Installation:
- Download the appropriate binary for your platform
- Make it executable:
chmod +x orb-* - 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