The_Matrix
v1.0.0 // offline_modeBasic Commands
git initInitialize repogit clone [url]Clone repogit statusView stategit add .Stage all filesgit commit -mCommit changesBranching
git branchList branchesgit checkout -b [br]Create & switchgit merge [br]Merge branchgit branch -d [br]Delete branchAdvanced
git stashSave changesgit stash popRestore changesgit rebase [br]Rebase currentgit log --onelineBrief historyContainers
docker psList runningdocker ps -aList alldocker stop [id]Stop containerdocker rm [id]Remove containerdocker logs [id]View logsImages
docker imagesList imagesdocker rmi [id]Remove imagedocker build -t .Build from Dockerfiledocker pull [img]Download imageFile Operations
ls -laList all with detailscp -r [src] [dst]Copy recursivelymv [src] [dst]Move / Renamerm -rf [dir]Delete forcefullychmod 777 [file]Change permissionsSystem & Network
top / htopTask managerdf -hDisk usagecurl -I [url]Fetch headersgrep -r "text" .Search in fileskill -9 [pid]Force kill process[ ABOUT THE MATRIX ]
The AllTools Matrix is a curated collection of developer cheat sheets and quick-reference command guides, designed to save you hours of searching through documentation. Whether you are a beginner memorizing your first Git commands or a senior engineer who needs a quick CSS selector refresher, The Matrix has you covered with clean, scannable, instantly searchable reference cards.
Currently, The Matrix covers the most essential tools in a modern developer's toolkit. The Git cheat sheet covers everything from initializing repositories and committing changes to branching strategies, merging, rebasing, and resolving conflicts. Git is the world's most widely used version control system, used by over 90% of professional software developers globally.
The Linux / Bash cheat sheet gives you instant access to the essential shell commands for navigating file systems, managing processes, working with permissions, handling archives, and piping data between programs. Bash mastery is a foundational skill for any developer working with servers, DevOps pipelines, or automation scripts.
The CSS Selectors cheat sheet covers the full spectrum of CSS selector syntax including element, class, ID, attribute, pseudo-class, and pseudo-element selectors. Understanding CSS selectors is critical for precise DOM styling, writing efficient stylesheets, and targeting elements in JavaScript via querySelector.
The JavaScript cheat sheet provides a compact reference for ES6+ syntax including arrow functions, destructuring, spread/rest operators, template literals, async/await, Promises, array methods like map, filter, and reduce, and modern module syntax.
WHY USE CHEAT SHEETS?
Cheat sheets are not a crutch — they are a tool for efficiency. Even the most experienced developers keep references close at hand. The goal is not to memorize every command but to understand concepts deeply and use references to quickly recall exact syntax. The Matrix is designed to be used alongside your actual work, not as a study guide in isolation. Bookmark this page and come back whenever you need a fast syntax check.