zsh:alias: Add HEAD to gla

`gla` is meant to be `glog --all` without stashes. Add the missing
`HEAD` to be accurate, as it is needed when in detached HEAD.
This commit is contained in:
2025-05-23 15:13:24 +02:00
parent 9bf853a8d2
commit 9a91b464a8

View File

@@ -42,7 +42,7 @@ fi
alias gf='git fetch' alias gf='git fetch'
alias gha='git add -p' alias gha='git add -p'
alias gl='glog --no-merges' alias gl='glog --no-merges'
alias gla='glog --branches --remotes --tags' alias gla='glog --branches --remotes --tags HEAD'
alias {gll,glg}='glog --graph' alias {gll,glg}='glog --graph'
alias {glll,glla,glga,glag,glogg}='gla --graph' alias {glll,glla,glga,glag,glogg}='gla --graph'
alias gp='git push' alias gp='git push'