git status
Show changed files, staged changes, and branch state.
git status Searchable Git command reference organized by category. Copy commands with one click. Covers basics, branching, remote, stash, and more.
Developer quick reference
Search common Git commands, filter by workflow category, and copy the command you need with one click.
Show changed files, staged changes, and branch state.
git status Stage all current file changes.
git add src/components Create a commit from staged changes.
git commit -m "Add API tester tool" Create a new branch pointer.
git branch feature/webhook-builder Create and switch to a new branch in one step.
git checkout -b feature/docker-generator Merge another branch into your current branch.
git merge release List configured remotes and URLs.
git remote -v Download remote changes without merging.
git fetch origin Push a branch and set its upstream.
git push -u origin feature/webhook-builder Save working changes without committing them.
git stash push -m "cron builder draft" See saved stash entries.
git stash list Restore and remove the latest stash.
git stash pop View compact commit history with branch context.
git log --oneline --graph --decorate -10 Show what is staged for the next commit.
git diff --staged Inspect a previous commit in detail.
git show HEAD~1 Discard unstaged changes in a file.
git restore src/pages/tool/[slug].astro Unstage a file but keep its changes.
git reset HEAD src/data/tools.json Create a new commit that reverses an older commit.
git revert a1b2c3d How to use
Git is the most widely used version control system. This reference covers everyday commands that developers use in their daily workflow.
Commands are organized from basic operations (init, add, commit) to advanced features (rebase, cherry-pick, bisect) for progressive learning.
More Dev tools
Related tools
dev
Test regex patterns with live match highlighting, capture groups, flags, and reusable developer snippets.
dev
Create beautiful CSS gradients with a visual editor. Choose linear or radial gradients, pick colors, adjust angles, and copy the CSS code instantly.
dev
Design perfect CSS box-shadow effects with a visual editor. Adjust offset, blur, spread, color, and inset to create shadows and copy ready-to-use CSS.
converter
Convert JSON arrays to CSV and CSV to JSON instantly in your browser. Download CSV files with one click.