Shell Aliases
19 Feb 2023Some frequently used Shell aliases for my own reference.
# git
alias gad="git add"
alias gcm="git commit -m"
alias gdf="git diff"
alias gst="git status -uno"
alias gsta="git status"
alias gck="git checkout"
alias gbs="git branch --sort=-committerdate"
# zsh
alias sp="source ~/.zshrc"
alias zshrc="vi ~/.zshrc"