From b61ae9cedc04d0fb5e0dd0311f68d6ce48135862 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sat, 1 Nov 2025 19:07:00 +0100 Subject: [PATCH] feat(git): run `gitf` after `gitf b` (#62) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/62 --- .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)