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 alias | |
alias ls='ls -F --color=auto --show-control-chars' | |
alias ll='ls -l' | |
alias g='git' | |
alias gg='git push' | |
alias ggf='git push --force-with-lease' | |
alias gp='git pull' | |
alias gf='git fetch' | |
alias gfa='git fetch --all --prune' | |
alias gcb='git checkout -b' |
OlderNewer