From 95e74108b531537e9a7b7dcbb72eb1b1466eeb0c Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 28 Aug 2022 15:49:12 -0500 Subject: [PATCH] feat(zsh): add alias for git log --oneline --- dots/.config/zsh/config/profile/profile/aliases.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/.config/zsh/config/profile/profile/aliases.zsh b/dots/.config/zsh/config/profile/profile/aliases.zsh index 33ed5037..cdd4ba8b 100644 --- a/dots/.config/zsh/config/profile/profile/aliases.zsh +++ b/dots/.config/zsh/config/profile/profile/aliases.zsh @@ -24,6 +24,7 @@ if command -v git >/dev/null 2>&1; then alias gd="git diff" alias gr="git remote" alias gl="git log" + alias glo="git log --oneline" alias gw="git worktree" alias gwa="git worktree add" alias gwr="git worktree remove"