# See your repo status at a glance
gx context
# Switch branches interactively
gx switch
# Undo the last git action (commit, stage, merge, rebase)
gx undo
# Fix the last commit message
gx oops -m "better message"
# Add a forgotten file to the last commit
gx oops --add src/forgot.ts
# See who knows the code best
gx who
# What did I do today?
gx recap
# Stash with a name you'll remember
gx shelf push "working on auth"