This commit is contained in:
jasonin2d 2015-02-10 19:00:20 +00:00
commit 15e604b4cd
2 changed files with 3 additions and 0 deletions

View file

@ -30,6 +30,7 @@ alias lsa='ls -lah'
alias l='ls -lah'
alias ll='ls -lh'
alias la='ls -lAh'
alias lrt='ls -lrth'
alias afind='ack-grep -il'

View file

@ -70,6 +70,8 @@ alias glo='git log --oneline --decorate --color'
compdef _git glo=git-log
alias glog='git log --oneline --decorate --color --graph'
compdef _git glog=git-log
alias glvp='git log --pretty="%Cred%h%Creset [%Cgreen%an %Creset %C(cyan)%ar%Creset]: %Cred%d%Creset %C(yellow)%s%Creset" --graph'
compdef _git glvp=git-log
alias gss='git status -s'
compdef _git gss=git-status
alias ga='git add'