From 93ff4e7da20831bca72b0a938a548a4bd582858d Mon Sep 17 00:00:00 2001 From: druckdev Date: Thu, 15 Jul 2021 15:58:43 +0200 Subject: [PATCH] zsh:glog: Add `--all` flag Pretend as if all the refs in refs/, along with HEAD, are listed on the command line. --- .config/zsh/autoload/glog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/autoload/glog b/.config/zsh/autoload/glog index 8d1c130..ab87e65 100755 --- a/.config/zsh/autoload/glog +++ b/.config/zsh/autoload/glog @@ -119,6 +119,6 @@ fi # Display an ascii graph of the commits in the above format and pipe that into # fzf. -git log "$formatshort" --graph "$dateshort" --color=always "$@" \ +git log --all "$formatshort" --graph "$dateshort" --color=always "$@" \ | fzf "${fzf_args[@]}" return 0