Custom Cheatsheet
Available settings
Column 1 Header
Title for the first column
Example: Git Commands
Column 1 Commands
Enter your commands, one per line. Format - "Label | command"
Example: Force Push | git push origin main --force
Pull Latest | git pull origin main
New Branch | git checkout -b feature/name
Stash Changes | git stash save "work in progress"
View Log | git log --oneline --graph
Reset Hard | git reset --hard HEAD~1
Column 2 Header
Title for the second column
Example: Docker Commands
Column 2 Commands
Enter your commands, one per line. Format - "Label | command"
Example: Detached Logs | docker logs -f <container>
Shell into Container | docker exec -it <id> /bin/bash
Prune System | docker system prune -af
Exit Container | exit
Copy from Container | docker cp container:/path /local
List Running | docker ps
Column 3 Header
Title for the third column
Example: Shell & Misc
Column 3 Commands
Enter your commands, one per line. Format - "Label | command"
Example: Activate venv | source venv/bin/activate
Reload Zsh | source ~/.zshrc
Create Alias | echo "alias name='cmd'" >> ~/.zshrc
Grep Files | grep -r "term" /path
New Tmux Session | tmux new -s session_name
Tree Directory | tree -L 2 -a
Make Executable | chmod +x filename
Nginx Logs | tail -f /var/log/nginx/error.log
0
Connections
1
Fork