feat(git): add alias for reflog

This commit is contained in:
Oskar Grunning 2019-03-22 08:56:51 +01:00
parent 45927aa8a2
commit 5b5f90f35f
2 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,7 @@ Aliases
* `glg` displays the graph log.
* `glG` displays the graph log with authors and dates.
* `glv` displays the log verifying the GPG signature of commits.
* `glr` displays the reference log.
* `glc` displays the commit count for each contributor in descending order.
### Merge

View File

@ -100,6 +100,7 @@ alias glO='git log --topo-order --pretty=format:"${_git_log_oneline_medium_forma
alias glg='git log --topo-order --all --graph --pretty=format:"${_git_log_oneline_format}"'
alias glG='git log --topo-order --all --graph --pretty=format:"${_git_log_oneline_medium_format}"'
alias glv='git log --topo-order --show-signature --pretty=format:"${_git_log_medium_format}"'
alias glr="git reflog"
alias glc='git shortlog --summary --numbered'
# Merge (m)