From b6886ec566ab97d229a6d888003e8bf4bf1dbdbf Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 2 Oct 2022 23:37:15 +0100 Subject: [PATCH] Improved git log alias --- zsh/aliases/git.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/aliases/git.zsh b/zsh/aliases/git.zsh index a2bced4..bd65d27 100644 --- a/zsh/aliases/git.zsh +++ b/zsh/aliases/git.zsh @@ -26,7 +26,7 @@ alias gcl="git clone" # Downloads repo from alias gch="git checkout" # Switch the HEAD to alias gb="git branch" # Create a new from HEAD alias gd="git diff" # Show all changes to untracked files -alias gtree="git log --graph --oneline --decorate" # Show branch tree +alias gtree="git log --graph --oneline --decorate --abbrev-commit" # Show branch tree alias gl='git log' # Tags