GitGud
Playground
Star us on GitHub
DE
Home
FAQ
Installation
Start Learning
Git Playground
Freely experiment with Git commands and learn from the cheat sheet
Git Terminal (Free Mode)
Git Cheat Sheet
Git Cheat Sheet
Basics
git init
Initializes a new Git repository
git status
Shows the status of the repository
git add
Adds file contents to the index
git commit
Records changes to the repository
git config
Configure Git settings
git help
Display help information
Branches
git branch
Lists, creates, or deletes branches
git checkout
Switches branches or restores files
git merge
Joins two or more development histories
git switch
Switch to a specified branch
git branch -d
Delete a branch
Commit History
git log
Shows the commit history
git diff
Show changes between commits
git show
Show various Git objects
git blame
Show who changed what in a file
Remote Repositories
git clone
Clones a repository into a new directory
git pull
Fetches and integrates changes from a remote repository
git push
Updates remote references and associated objects
git remote
Manage remote repositories
git fetch
Download objects and refs from remote
Undoing Changes
git restore
Restore working tree files
git reset
Reset current HEAD to a specific state
git revert
Create commit that undoes changes
Advanced Commands
git rebase
Reapplies commits on top of another base
git stash
Stashes changes temporarily
git tag
Create, list, delete tags
git cherry-pick
Apply changes from specific commits
git bisect
Use binary search to find bugs