Show HN: Qwe – Treat standalone files as Individual Repository with qwe rcs

1 month ago 2

qwe (pronounced kiwi) is a simple yet powerful version/revision control system that tracks individual files, not entire projects.
Unlike Git, which manages repositories as a whole, qwe provides a more granular approach — perfect for quick file-level tracking, experimentation, or standalone scripts.


  • File-based version control — track versions of specific files independently.
  • Easy commits — record changes with a simple commit message.
  • Revert anytime — roll back a single file without affecting others.
  • Simple and fast — minimal setup, no complex repository management.

You can install qwe in two ways:

1️⃣ Using Go Package Manager

go install github.com/mainak55512/qwe@latest

Make sure your Go environment’s GOPATH/bin is added to your system PATH.

2️⃣ Using Prebuilt Executables

Download the prebuilt binary for your platform from the Releases section of this repository and add it to your PATH.


Command Description
qwe init Initialize qwe in the current directory
qwe track <file-path> Start tracking a file
qwe list <file-path> List all commits for the specified file
qwe commit <file-path> "<commit message>" Commit changes to the file with a message
qwe revert <file-path> <commit-id> Revert the file to a previous version
qwe current <file-path> Shows current commit details of the specified file
qwe rebase <file-path> Revert file to its base version
qwe diff <file-path> Shows latest uncommitted and last committed version diff
qwe diff <file-path> <commit_id_1> <commit_id_2> Shows version diff of commit_id_1 & commit_id_2
qwe diff <file-path> uncommitted <commit_id> Shows version diff of latest uncommitted version and commit_id version

qwe init qwe track notes.txt qwe commit notes.txt "Initial notes added" // -> commitID 0 qwe commit notes.txt "Updated with new ideas" // -> commitID 1 qwe commit notes.txt "Removed already executed ideas" // -> commitID 2 qwe list notes.txt qwe revert notes.txt 1 qwe current notes.txt qwe diff notes.txt qwe rebase notes.txt

  • Ideal for independent file tracking without setting up a full Git repo.
  • Great for scripts, configs, notes, or documents.
  • Simple CLI interface — no branching or merging headaches.

  • Add diff support to compare file versions
  • Enable remote file sync
  • Provide optional GUI interface

MIT License © 2025

Read Entire Article