8 lines
137 B
Text
8 lines
137 B
Text
#compdef git-fetch-branch
|
|
#description fetch a branch by name
|
|
|
|
_git-fetch-branch() {
|
|
__git_branch_names "$@"
|
|
}
|
|
|
|
_git-fetch-branch "$@"
|