1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-10-16 11:40:46 +00:00

limit output to 10 last branches; configurable

This commit is contained in:
Adam Sir 2024-02-28 11:28:36 +01:00
parent 09976595be
commit 7ab8271cd9
No known key found for this signature in database
GPG key ID: 6E1E5A333B13BCF3

View file

@ -3,9 +3,10 @@
####################################### #######################################
function git-checkout-interactive() { function git-checkout-interactive() {
local ITEMS_TO_SHOW=10
# Get all branches sorted by committer date, along with their last commit hash # Get all branches sorted by committer date, along with their last commit hash
local branches local branches
branches=$(git for-each-ref --sort=-committerdate --format='%(refname:short) %(objectname:short)' refs/heads/) branches=$(git for-each-ref --count="$ITEMS_TO_SHOW" --sort=-committerdate --format='%(refname:short) %(objectname:short)' refs/heads/)
# Parse branches # Parse branches
local branch_list=() local branch_list=()