From 494829fdc4765183ccd0ca809c9f64ab5bbbbcd1 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Mon, 10 Jul 2023 00:10:50 +0200 Subject: [PATCH] zsh:alias: Add --tags to almost --all `glog` I don't want to see refs/stash, that is why --all does not work for me --- .config/zsh/zshrc.d/30-alias.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/zsh/zshrc.d/30-alias.zsh b/.config/zsh/zshrc.d/30-alias.zsh index 46e0b80..9802bd8 100644 --- a/.config/zsh/zshrc.d/30-alias.zsh +++ b/.config/zsh/zshrc.d/30-alias.zsh @@ -75,9 +75,9 @@ fi alias gf='git fetch' alias gha='git add -p' alias gl='glog' - alias gla='glog --branches --remotes' + alias gla='glog --branches --remotes --tags' alias {gll,glg}='glog --graph' - alias {glll,glla,glga,glag,glogg}='glog --graph --branches --remotes' + alias {glll,glla,glga,glag,glogg}='gla --graph' alias gp='git push' alias gpf='git push --force-with-lease' alias gpull='git pull'