Skip to content

Instantly share code, notes, and snippets.

@BobToninho
Created November 13, 2023 13:33
Show Gist options
  • Save BobToninho/854f111378b823cec537ecd0e68b1acf to your computer and use it in GitHub Desktop.
Save BobToninho/854f111378b823cec537ecd0e68b1acf to your computer and use it in GitHub Desktop.
function gch {
BRANCH=$(git branch | fzf --cycle | tr -d '[:space:]')
if [[ $BRANCH =~ '^\*' ]] then
echo "current branch selected, nothing to do"
return 0
fi
if [[ -n $BRANCH ]] then
git checkout $BRANCH
else
echo "no branch seleted, aborting"
return 1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment