From be8c306c18754f6ede2955f901b832a3225d4b83 Mon Sep 17 00:00:00 2001 From: sandr01d <88739791+sandr01d@users.noreply.github.com> Date: Fri, 13 Jan 2023 23:59:52 +0100 Subject: [PATCH] Add alias gct for forgit::checkout::tag in fish (#278) Noticed there was another alias missing for fish. This is the last one :) --- conf.d/forgit.plugin.fish | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conf.d/forgit.plugin.fish b/conf.d/forgit.plugin.fish index 740d16b..fe97321 100644 --- a/conf.d/forgit.plugin.fish +++ b/conf.d/forgit.plugin.fish @@ -221,4 +221,10 @@ if test -z "$FORGIT_NO_ALIASES" alias gbl 'forgit::blame' end + if test -n "$forgit_checkout_tag" + alias $forgit_checkout_tag 'forgit::checkout::tag' + else + alias gct 'forgit::checkout::tag' + end + end