qwe (pronounced kiwi) makes version control effortless. Track individual files with precision, group them seamlessly, and commit or revert changes individually or together — all in one lightweight, intuitive tool built for speed and simplicity.
- 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.
- Grouped snapshot — Track multiple files with ease for collective commit and revert.
- Simple and fast — minimal setup, no complex repository management.
qwe allows you to track individual files separately or bundle related files into a single, named snapshot for easy tracking and rollback.
Group Creation: Create a logical group (e.g., "Project X Assets," "Configuration Files") that contains multiple individual files.
Unified Tracking: When you take a snapshot of the group, qwe captures the current state of all files within it. This makes rolling back a set of related changes incredibly simple.
You can install qwe in two ways:
go install github.com/mainak55512/qwe@latestMake sure your Go environment’s GOPATH/bin is added to your system PATH.
Download the prebuilt binary for your platform from the Releases section of this repository and add it to your PATH.
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 revert notes.txt 0
qwe group-init new_group
qwe group-track new_group notes.txt example.txt README.md
qwe group-commit new_group "Initial commit" // -> commitID 1
qwe group-commit new_group "Updated commit" // -> commitID 2
qwe group-revert new_group 0 // -> Revert back to base version (to the version from which group tracking started)Full documentation is available at https://mainak55512.github.io/qwe.
- Ideal for independent file tracking without setting up a full Git repo.
- Track multiple files while maintaining individual file versions.
- Great for scripts, configs, notes, or documents.
- Simple CLI interface — no branching or merging headaches.
Check out code of conduct for qwe here.
Contributions are welcome. Please have a look at the contribution guidelines for qwe before contributing.

