diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-08 08:16:34 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-08 08:16:34 -0800 |
commit | 755f8094b8d5327d93e14244003498019245bcca (patch) | |
tree | 2d80cb44cb421cd62bfedeb7bae059a76ab4b38b | |
parent | 95e6feaf761ee1dffb8b5c49542852231e5e1a4b (diff) | |
parent | f6f3e9301940dc21680aa50156355c8dba61b441 (diff) | |
download | zsh-755f8094b8d5327d93e14244003498019245bcca.tar.gz zsh-755f8094b8d5327d93e14244003498019245bcca.tar.bz2 zsh-755f8094b8d5327d93e14244003498019245bcca.zip |
Merge pull request #2529 from emanuelez/patch-1
Improve oneline logs
-rw-r--r-- | plugins/git/git.plugin.zsh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 1285a3247..2b5983f33 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -62,8 +62,10 @@ alias glgg='git log --graph --max-count=10' compdef _git glgg=git-log alias glgga='git log --graph --decorate --all' compdef _git glgga=git-log -alias glo='git log --oneline' +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 gss='git status -s' compdef _git gss=git-status alias ga='git add' |