Improved git log alias

This commit is contained in:
Alicia Sykes 2022-10-02 23:37:15 +01:00
parent efc05dce05
commit b6886ec566

View File

@ -26,7 +26,7 @@ alias gcl="git clone" # Downloads repo from <url>
alias gch="git checkout" # Switch the HEAD to <branch> alias gch="git checkout" # Switch the HEAD to <branch>
alias gb="git branch" # Create a new <branch> from HEAD alias gb="git branch" # Create a new <branch> from HEAD
alias gd="git diff" # Show all changes to untracked files 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' alias gl='git log'
# Tags # Tags