← All tools
Command Teller
TextDescribe what you want to do in plain English and get the matching shell or git command, with variants.
git statusShow working tree status
git log --oneline -20Recent commits, compact
git diff --statSummary of changes per file
git stash push -m 'WIP'Stash uncommitted changes
git reset --soft HEAD~1Undo last commit, keep changes staged
git restore --staged .Unstage everything
git switch -c feature/xCreate + switch to new branch
git push -u origin HEADPush current branch and set upstream