update readme
- SHA
3d9f8982f49760273fed83d625439f914b021970- Parents
-
4742ff7 - Tree
5438ed4
3d9f898
3d9f8982f49760273fed83d625439f914b0219704742ff7
5438ed4| Status | File | + | - |
|---|---|---|---|
| M |
README.md
|
28 | 2 |
README.mdmodified@@ -9,12 +9,35 @@ An interactive tree utility for complete git workflows, written in modern Fortra | ||
| 9 | 9 | - Proper UTF-8 tree rendering with box-drawing characters (`├──`, `└──`, `│`) |
| 10 | 10 | - **Color-coded status indicators:** |
| 11 | 11 | - Green `↑` - Staged changes (ready to commit) |
| 12 | + - Yellow `↓` - pending changes from remote | |
| 12 | 13 | - Red `✗` - Modified tracked files |
| 13 | 14 | - Dim grey `✗` - Untracked files |
| 14 | 15 | - Supports `--all`/`-a` flag to show all files (with status marked) |
| 15 | 16 | - Alphabetically sorted output matching the `tree` command format |
| 16 | -- **Interactive mode** with full git workflow: stage, unstage, commit, push, and status view | |
| 17 | -- **Modular Fortran architecture** for maintainability and extensibility | |
| 17 | +- **Interactive mode** with full git workflow: stage, unstage, commit, push, diff (with pager), status (with pager), fetch, and pull | |
| 18 | + | |
| 19 | +## Installing | |
| 20 | + | |
| 21 | +### AUR | |
| 22 | + | |
| 23 | +```bash | |
| 24 | +paru -S fuss | |
| 25 | +or | |
| 26 | +yay -s fuss | |
| 27 | +``` | |
| 28 | + | |
| 29 | +### Homebrew | |
| 30 | + | |
| 31 | +```bash | |
| 32 | +brew tap FortranGoingOnForty/fuss | |
| 33 | +brew install fuss | |
| 34 | +``` | |
| 35 | + | |
| 36 | +### RPM | |
| 37 | +```bash | |
| 38 | +sudo dnf config-manager --add-repo https://repos.musicsian.com/musicsian.repo | |
| 39 | +sudo dnf install fuss | |
| 40 | +``` | |
| 18 | 41 | |
| 19 | 42 | ## Building |
| 20 | 43 | |
@@ -52,6 +75,9 @@ Interactive mode (full git workflow): | ||
| 52 | 75 | - `a`: Stage file (git add) |
| 53 | 76 | - `u`: Unstage file (git restore --staged) |
| 54 | 77 | - `m`: Commit with message prompt |
| 78 | +- `f`: fetch from remote | |
| 79 | +- `l`: pull from remote | |
| 80 | +- `d`: diff selected file in pager | |
| 55 | 81 | - `p`: Push to remote |
| 56 | 82 | - `s`: View full git status (scrollable with `less`) |
| 57 | 83 | |