1
0
Fork 0
dotfiles/zsh/completions/_git-fetch-branch
2024-09-26 15:59:46 -04:00

8 lines
137 B
Text

#compdef git-fetch-branch
#description fetch a branch by name
_git-fetch-branch() {
__git_branch_names "$@"
}
_git-fetch-branch "$@"