1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-24 01:37:27 +08:00

Compare commits

...

6 Commits

Author SHA1 Message Date
Adam Šír
53dc8725a4
Merge a4a8968be1 into 95de26572e 2025-12-20 08:12:10 -08:00
Adam Šír
a4a8968be1
Merge branch 'ohmyzsh:master' into adamsir/git-checkout-interactive 2025-06-26 11:19:23 +02:00
Adam Šír
1b4703387d
Merge branch 'ohmyzsh:master' into adamsir/git-checkout-interactive 2024-05-09 12:07:54 +02:00
Adam Šír
2cf9ad072d
Update plugins/git-checkout-interactive/README.md
Co-authored-by: Olivia (Zoe) <zoe.i2k1@gmail.com>
2024-05-09 12:07:06 +02:00
Adam Sir
7ab8271cd9
limit output to 10 last branches; configurable 2024-02-28 11:28:36 +01:00
Adam Sir
09976595be
feat(plugin): git checkout interactive 2023-11-01 12:37:17 +01:00
2 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,15 @@
# lol
This plugin adds a command that lets you interactively switch between branches.
To use it, add `git-checkout-interactive` to the plugins array in your `.zshrc` file:
```zsh
plugins=(... git-checkout-interactive)
```
## Usage Examples
```sh
gci
```

View File

@ -0,0 +1,57 @@
#######################################
# 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
local branches
branches=$(git for-each-ref --count="$ITEMS_TO_SHOW" --sort=-committerdate --format='%(refname:short) %(objectname:short)' refs/heads/)
# Parse branches
local branch_list=()
local current_branch
current_branch=$(git rev-parse --abbrev-ref HEAD)
if [[ "$current_branch" == "" ]]; then
return 0
fi
while read -r branch hash; do
if [[ "$branch" == "$current_branch" ]]; then
echo "On branch $branch \n"
else
branch_list+=("$branch ($hash)")
fi
done <<< "$branches"
if (( ${#branch_list} == 0 )); then
echo "No other branches available."
return 0
else
echo "Select a branch to switch to:\n"
fi
# Display menu
local i=1
for branch in "${branch_list[@]}"; do
echo "($i) $branch"
((i++))
done
echo -n "\nPlease enter your choice: "
# Handle user input
while :; do
local choice
read -r choice
if (( choice > 0 && choice <= ${#branch_list[@]} )); then
local selected_branch="${branch_list[$((choice))]}"
local target_branch="${selected_branch//->}"
target_branch="${target_branch%% *}"
git checkout "$target_branch"
break
else
break
fi
done
}
alias gci="git-checkout-interactive || return 0"