From 401fc939ea73a148cca36c831ff872b6fc3cd32f Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Fri, 20 Jan 2023 12:57:40 +0100 Subject: [PATCH] zsh:alias: Add more possibilities for glog-aliases It kind of follows a pattern: `a` for `all` (i.e. --branches --remotes) and `g` for `graph` (but adding another `l` is ok too). --- .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 8374cac..8dc85b0 100644 --- a/.config/zsh/zshrc.d/30-alias.zsh +++ b/.config/zsh/zshrc.d/30-alias.zsh @@ -70,8 +70,8 @@ fi alias gha='git add -p' alias gl='glog' alias gla='glog --branches --remotes' - alias gll='glog --graph' - alias {glll,glla,glogg}='glog --graph --branches --remotes' + alias {gll,glg}='glog --graph' + alias {glll,glla,glga,glag,glogg}='glog --graph --branches --remotes' alias gp='git push' alias gpull='git pull' alias gpush='git push'