Skip to content

Commit

Permalink
Merge pull request #65 from wrecklass/master
Browse files Browse the repository at this point in the history
Sort tags by refname in fzf list. Issue #64
  • Loading branch information
Bhupesh-V authored Oct 20, 2023
2 parents 21f96ec + 40289fd commit 1f4a0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ugit
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ undo_git_tag() {
perror "Unable to fetch tags from remote.Please check repository access."
exit
fi
tag=$(git tag | fzf --ansi --height 80% \
tag=$(git tag --sort=v:refname | fzf --ansi --height 80% \
--reverse --multi --header="Choose a tag to remove" \
--preview "echo {} | cut -d' ' -f1 | xargs -I{} git show --color --pretty=format:%b {}" \
--bind 'j:down,k:up,ctrl-j:preview-down,ctrl-k:preview-up,ctrl-space:toggle-preview' --preview-window right:60% )
Expand Down

0 comments on commit 1f4a0c5

Please sign in to comment.