1
0
Fork 0
mirror of synced 2024-05-27 20:41:11 -04:00

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.
* `glG` displays the graph log with authors and dates. * `glG` displays the graph log with authors and dates.
* `glv` displays the log verifying the GPG signature of commits. * `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. * `glc` displays the commit count for each contributor in descending order.
### Merge ### 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_format}"'
alias glG='git log --topo-order --all --graph --pretty=format:"${_git_log_oneline_medium_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 glv='git log --topo-order --show-signature --pretty=format:"${_git_log_medium_format}"'
alias glr="git reflog"
alias glc='git shortlog --summary --numbered' alias glc='git shortlog --summary --numbered'
# Merge (m) # Merge (m)