From c88839d3e0e060cb8f15dfac7170becdb4f4664c Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Wed, 24 Jun 2026 22:27:37 +0530 Subject: [PATCH] docs: Update readme --- readme.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/readme.md b/readme.md index 068783a..0eb424e 100644 --- a/readme.md +++ b/readme.md @@ -77,6 +77,28 @@ b con i3 It automatically fuzzy-finds the folder in case there is no exact match. Also, in case there is only a singular config file in that folder, then it will directly open that file. +### Rollbacks and Savepoints (`b rb` and `b fall`) + +Bootstrap CLI features a powerful, procedural rollback system. It strictly tracks every extracted binary, configuration snippet, and package manager transaction to ensure your environment stays clean. + +To safely uninstall the very last tool you installed (including wiping its shell paths and aliases): + +```bash +b rb +``` + +To create a named savepoint before experimenting with your setup: + +```bash +b fall pre_dev_setup +``` + +To completely roll back all installations made after that savepoint, restoring your system back to that exact state: + +```bash +b rb pre_dev_setup +``` + ### Updating To check for updates and update the tool manually: