Created
December 9, 2022 17:53
-
-
Save derekpappas/fce9ebf672a26fbd291c7a4b7cf5de63 to your computer and use it in GitHub Desktop.
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
| alias git_set_upstream='git branch --set-upstream-to=origin/$(git rev-parse --abbrev-ref HEAD)' | |
| alias gco='git checkout' | |
| alias gci='commit' | |
| alias gst='status' | |
| alias gbr='branch' | |
| alias ghist='log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short' | |
| alias gtype='cat-file -t' | |
| alias gdump='cat-file -p' | |
| alias ga='git add' | |
| alias gb='git branch' | |
| alias gba='git branch -a' | |
| alias gc='git commit -v' | |
| alias gd='git diff | matealias' | |
| alias gl='git pull' | |
| alias gp='git push' | |
| alias gst='git status' | |
| alias gcd='git co develop' | |
| alias gco='git checkout' | |
| alias gcm='git commit -m' | |
| alias groot='git rev-parse --show-toplevel' | |
| alias gparent='git log --graph --decorate' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment