📋 Quick Reference

Warp Cheat Sheet

Everything in one place. Print this out or bookmark it!

âŒ¨ī¸ Warp Shortcuts

AI help # + question
Agent mode Ctrl + Shift + A
Command palette Ctrl + P
Search history Ctrl + R
New tab Ctrl + T
Close tab Ctrl + W
Split right Ctrl + D
Split down Ctrl + Shift + D
Switch panes Alt + Arrows
Clear screen Ctrl + L
Settings Ctrl + ,

đŸŒŋ Git Basics

Check status git status
See changes git diff
Stage all files git add .
Commit git commit -m "msg"
Push git push
Pull git pull
View history git log --oneline

🔀 Git Branching

List branches git branch
Create & switch git checkout -b name
Switch branch git checkout name
Merge branch git merge name
Delete branch git branch -d name
Push new branch git push -u origin name

â†Šī¸ Git Undo

Discard file changes git checkout -- file
Unstage file git reset HEAD file
Undo last commit git reset --soft HEAD~1
Stash changes git stash
Restore stash git stash pop

📁 Navigation

Go to folder cd folder
Go up one level cd ..
Go home cd ~
Current path pwd
List files ls
List with details ls -la

🤖 AI Prompts

# find files containing "TODO"
# what's using port 3000
# show disk usage
# compress this folder
# explain this error
# undo my last commit
# create a .gitignore
# list running processes

đŸ“Ļ NPM

Install deps npm install
Add package npm install pkg
Dev dependency npm install -D pkg
Run script npm run script
Start dev npm run dev
Build npm run build

📄 Files

Create folder mkdir name
Create file touch name
Copy cp source dest
Move/rename mv source dest
Delete file rm file
Delete folder rm -rf folder