Created
January 10, 2022 23:52
-
-
Save ktunprasert/0b0ed2340ab60d423bdbf2667dddb456 to your computer and use it in GitHub Desktop.
Common alias for Git and other dev tools
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 gaa='git add -A' | |
alias ga='git add' | |
alias gb='git branch' | |
alias gc='git checkout' | |
alias gcb='git checkout -b' | |
alias gcm='git commit -m' | |
alias gcp='git cherry-pick' | |
alias gm='git merge' | |
alias gmnf='git merge --no-ff' | |
alias gp='git pull' | |
alias gra='git remote add' | |
alias gs='git status' | |
alias gu='git push' | |
alias guu='git push -u' | |
alias cls='clear' | |
alias dc='docker-compose' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment