From ca5edbe5383c97217cc7390c1ae75e5befb0bf28 Mon Sep 17 00:00:00 2001 From: druckdev Date: Fri, 23 Jul 2021 12:06:58 +0200 Subject: [PATCH] zsh:glog: Remove `--all` flag This annoys me in more cases than I thought. For example when checking out a commit in the past in detached head mode and I want to see the past commits before the current one. Especially because there is no flag that can disable it again. The flag has to be passed manually to `glog` now. --- .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 ab87e65..8d1c130 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 --all "$formatshort" --graph "$dateshort" --color=always "$@" \ +git log "$formatshort" --graph "$dateshort" --color=always "$@" \ | fzf "${fzf_args[@]}" return 0