zsh:alias: Add gla for glog --branches --remotes

Sometimes I want to see other branches but the repository is too big for
`--graph`.

Add `gla` as alias to `glog --branches --remotes` similar to `glll`.

Add `glla` as further alias to `glll` and make the brace expansion more
verbose for better readability.
This commit is contained in:
2023-01-19 03:16:33 +01:00
parent 0d39158b7c
commit b35ef3603f

View File

@@ -69,8 +69,9 @@ fi
alias gf='git fetch' alias gf='git fetch'
alias gha='git add -p' alias gha='git add -p'
alias gl='glog' alias gl='glog'
alias gla='glog --branches --remotes'
alias gll='glog --graph' alias gll='glog --graph'
alias gl{ll,ogg}='glog --graph --branches --remotes' alias {glll,glla,glogg}='glog --graph --branches --remotes'
alias gp='git push' alias gp='git push'
alias gpull='git pull' alias gpull='git pull'
alias gpush='git push' alias gpush='git push'