Created
September 13, 2022 00:10
-
-
Save dblodorn/a16929d3feec618467fd340002f35f0f 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
## Git Aliases | |
alias gs='git status -s' | |
alias gb='git branch' | |
alias gd='git diff' | |
alias gl='git log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --dat$ | |
alias gco='git checkout' | |
alias ga='git add .' | |
alias gcm='git commit -m' | |
alias gpo='git push origin' | |
alias gpuo='git pull origin' | |
alias gbcopy="git branch | grep '^\*' | cut -d' ' -f2 | pbcopy" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For use with Bash (Unix shell) & .git