mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-06-05 05:03:16 +02:00
Add glr alias for git log --reverse.
I wanted to add another one the `gl` for `git log`, but that's already taken for `git pull`, so I added the one I use often when I want to go to the starting commit of some repository which is `git log --reverse` for which I set the alias `glr` which wasn't taken.
This commit is contained in:
parent
37c2d0ddd7
commit
1910b1fe70
1 changed files with 1 additions and 0 deletions
|
|
@ -174,6 +174,7 @@ alias gke='\gitk --all $(git log -g --pretty=%h)'
|
||||||
compdef _git gke='gitk'
|
compdef _git gke='gitk'
|
||||||
|
|
||||||
alias gl='git pull'
|
alias gl='git pull'
|
||||||
|
alias glr='git log --reverse'
|
||||||
alias glg='git log --stat'
|
alias glg='git log --stat'
|
||||||
alias glgp='git log --stat -p'
|
alias glgp='git log --stat -p'
|
||||||
alias glgg='git log --graph'
|
alias glgg='git log --graph'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue