Tulz.net
Developer Tools

Cheat Sheet Generator

Quick reference for common commands. Search, copy, and boost your productivity.

Setup

git init

Initialize a new Git repository

Setup

git clone <url>

Clone a repository from URL

Basic

git status

Check status of working directory

Basic

git add <file>

Add file to staging area

Basic

git add .

Add all changes to staging

Basic

git commit -m 'message'

Commit staged changes

Basic

git push origin <branch>

Push commits to remote

Basic

git pull

Fetch and merge remote changes

Branching

git branch

List all branches

Branching

git branch <name>

Create new branch

Branching

git checkout <branch>

Switch to branch

Branching

git checkout -b <branch>

Create and switch to new branch

Branching

git merge <branch>

Merge branch into current

History

git log

View commit history

History

git diff

Show changes between commits

Advanced

git reset --hard

Reset to last commit

Advanced

git stash

Temporarily save changes

Advanced

git stash pop

Restore stashed changes

About Cheat Sheet Generator

This searchable cheat sheet provides quick access to commonly used commands for Git, Docker, Tailwind CSS, and npm. Perfect for developers who want a fast reference without leaving their workflow.

Simply search for what you need, click to copy any command, and paste it into your terminal or code editor. All commands are categorized for easy navigation.