AutoYADM commit: 2025-06-03 13:00:14

This commit is contained in:
Daniel Fichtinger 2025-06-03 13:00:14 -04:00
parent f4d51acdfb
commit b81120710b
7 changed files with 75 additions and 15 deletions

View file

@ -75,6 +75,8 @@ _git-forgit() {
'rebase:git rebase'
'reset_head:git reset HEAD (unstage) selector'
'revert_commit:git revert commit selector'
'reword:git fixup=reword'
'squash:git squash'
'stash_show:git stash viewer'
'stash_push:git stash push selector'
)
@ -96,6 +98,8 @@ _git-forgit() {
rebase) _git-rebase ;;
reset_head) _git-staged ;;
revert_commit) __git_recent_commits ;;
reword) __git_branch_names ;;
squash) __git_branch_names ;;
stash_show) _git-stash-show ;;
show) _git-show ;;
esac
@ -122,6 +126,8 @@ compdef _git-reflog forgit::reflog
compdef _git-rebase forgit::rebase
compdef _git-staged forgit::reset::head
compdef __git_recent_commits forgit::revert::commit
compdef __git_branch_names forgit::reword
compdef __git_branch_names forgit::squash
compdef _git-stash-show forgit::stash::show
compdef _git-show forgit::show