Last active
December 26, 2018 09:33
-
-
Save ikenfin/735ae94f6da18a8a43fd2b91b76a0108 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
# some more ls aliases | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias c='clear' | |
# git aliases | |
alias gad='git add' | |
alias gcm='git commit -m' | |
alias gp='git push' | |
alias gls='clear && git status -s .' | |
alias glsa='clear && git status -s' | |
alias gck='git checkout' | |
alias gbr='git branch' | |
alias rgls="find ./ -maxdepth 1 -type d -! -path '.*/' -exec sh -c '([ -d {}/.git ] && echo {} status: && cd {} && git status -s && echo)' \;" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment