Skip to content

Instantly share code, notes, and snippets.

@eutobias
Last active May 25, 2025 22:43
Show Gist options
  • Save eutobias/d7f4edd995d44471ae70666d8ec40276 to your computer and use it in GitHub Desktop.
Save eutobias/d7f4edd995d44471ae70666d8ec40276 to your computer and use it in GitHub Desktop.
git aliases
[alias]
lg = log --all --graph --decorate --oneline --abbrev-commit
st = status
co = checkout
cob = checkout -b
c = !git add -A && git commit -m
save = !git add -A && git commit -m 'SAVEPOINT'`
undo = reset --soft HEAD~
clean-repo = clean -dfx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment