From 683acefc2d33370cda31f283cf0f5cf9dd56dcc0 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sat, 1 Nov 2025 19:05:59 +0100 Subject: [PATCH] feat(bash): run gitf after gitf b --- .bash_aliases | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bash_aliases b/.bash_aliases index 00c3092..560703f 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -139,10 +139,12 @@ gitf () { if git show-ref --verify --quiet refs/heads/"$branch"; then git checkout $branch + gitf return 0 fi git checkout -b $branch + gitf ;; # Clear local branches that have no upstream on remote (cleanup)