Last active
July 1, 2026 21:18
-
-
Save eutobias/d7f4edd995d44471ae70666d8ec40276 to your computer and use it in GitHub Desktop.
git aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| email = eutobias@gmail.com | |
| name = Tobias Taurian | |
| [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 | |
| [push] | |
| autoSetupRemote = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment