Created
July 25, 2018 14:10
-
-
Save g-pavlik/832c2e2eba15f6b62e30908626134e6e to your computer and use it in GitHub Desktop.
This allows you to switch between latest git branches
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias gsb="select option in `git branch --sort=-committerdate | head -n $(( $LINES / 2 )) | grep -v '*'`; do git checkout $option; break ;done" | |
# --sort=-committerdate # sorts branches by commit dates (use --sort=-committerdate for opposite direction) | |
# $(( $LINES / 2 )) # use half of your terminal height (I like to have some context preserved). | |
# use -n 100000000 to use all terminal space (select will reduce the number of options for you) | |
# grep -v '*' - exclude the current branch, if you remove this you have to accomodate the '*' char in $option | |
# break - remove this if you want to switch, and the immediatelly be given option to switch again :D (just a joke, it's useless without it) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
demo: