mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
git-extras: update completion (2018-05-24 0f76863)
This commit is contained in:
parent
3edd424af2
commit
be65adc6c3
1 changed files with 194 additions and 31 deletions
|
@ -47,6 +47,14 @@ __gitex_commits() {
|
||||||
_describe -t commits commit commits && ret=0
|
_describe -t commits commit commits && ret=0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__gitex_remote_names() {
|
||||||
|
local expl
|
||||||
|
declare -a remote_names
|
||||||
|
remote_names=(${(f)"$(_call_program remotes git remote 2>/dev/null)"})
|
||||||
|
__git_command_successful || return
|
||||||
|
_wanted remote-names expl remote-name compadd $* - $remote_names
|
||||||
|
}
|
||||||
|
|
||||||
__gitex_tag_names() {
|
__gitex_tag_names() {
|
||||||
local expl
|
local expl
|
||||||
declare -a tag_names
|
declare -a tag_names
|
||||||
|
@ -69,7 +77,11 @@ __gitex_specific_branch_names() {
|
||||||
declare -a branch_names
|
declare -a branch_names
|
||||||
branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads/"$1" 2>/dev/null)"}#refs/heads/$1/})
|
branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads/"$1" 2>/dev/null)"}#refs/heads/$1/})
|
||||||
__git_command_successful || return
|
__git_command_successful || return
|
||||||
_wanted branch-names expl branch-name compadd $* - $branch_names
|
_wanted branch-names expl branch-name compadd - $branch_names
|
||||||
|
}
|
||||||
|
|
||||||
|
__gitex_chore_branch_names() {
|
||||||
|
__gitex_specific_branch_names 'chore'
|
||||||
}
|
}
|
||||||
|
|
||||||
__gitex_feature_branch_names() {
|
__gitex_feature_branch_names() {
|
||||||
|
@ -102,6 +114,11 @@ __gitex_author_names() {
|
||||||
}
|
}
|
||||||
|
|
||||||
# subcommands
|
# subcommands
|
||||||
|
_git-authors() {
|
||||||
|
_arguments -C \
|
||||||
|
'(--list -l)'{--list,-l}'[show authors]' \
|
||||||
|
'--no-email[without email]' \
|
||||||
|
}
|
||||||
|
|
||||||
_git-bug() {
|
_git-bug() {
|
||||||
local curcontext=$curcontext state line ret=1
|
local curcontext=$curcontext state line ret=1
|
||||||
|
@ -126,8 +143,16 @@ _git-bug() {
|
||||||
_arguments -C \
|
_arguments -C \
|
||||||
':branch-name:__gitex_bug_branch_names'
|
':branch-name:__gitex_bug_branch_names'
|
||||||
;;
|
;;
|
||||||
|
-r|--remote )
|
||||||
|
_arguments -C \
|
||||||
|
':remote-name:__gitex_remote_names'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
return 0
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
'(--remote -r)'{--remote,-r}'[setup remote tracking branch]'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -136,6 +161,40 @@ _git-changelog() {
|
||||||
'(-l --list)'{-l,--list}'[list commits]' \
|
'(-l --list)'{-l,--list}'[list commits]' \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_git-chore() {
|
||||||
|
local curcontext=$curcontext state line ret=1
|
||||||
|
declare -A opt_args
|
||||||
|
|
||||||
|
_arguments -C \
|
||||||
|
': :->command' \
|
||||||
|
'*:: :->option-or-argument' && ret=0
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
(command)
|
||||||
|
declare -a commands
|
||||||
|
commands=(
|
||||||
|
'finish:merge and delete the chore branch'
|
||||||
|
)
|
||||||
|
_describe -t commands command commands && ret=0
|
||||||
|
;;
|
||||||
|
(option-or-argument)
|
||||||
|
curcontext=${curcontext%:*}-$line[1]:
|
||||||
|
case $line[1] in
|
||||||
|
(finish)
|
||||||
|
_arguments -C \
|
||||||
|
':branch-name:__gitex_chore_branch_names'
|
||||||
|
;;
|
||||||
|
-r|--remote )
|
||||||
|
_arguments -C \
|
||||||
|
':remote-name:__gitex_remote_names'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
return 0
|
||||||
|
esac
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
'(--remote -r)'{--remote,-r}'[setup remote tracking branch]'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
_git-contrib() {
|
_git-contrib() {
|
||||||
|
@ -149,6 +208,27 @@ _git-count() {
|
||||||
'--all[detailed commit count]'
|
'--all[detailed commit count]'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_git-create-branch() {
|
||||||
|
local curcontext=$curcontext state line
|
||||||
|
_arguments -C \
|
||||||
|
': :->command' \
|
||||||
|
'*:: :->option-or-argument'
|
||||||
|
|
||||||
|
case "$state" in
|
||||||
|
(command)
|
||||||
|
_arguments \
|
||||||
|
'(--remote -r)'{--remote,-r}'[setup remote tracking branch]'
|
||||||
|
;;
|
||||||
|
(option-or-argument)
|
||||||
|
curcontext=${curcontext%:*}-$line[1]:
|
||||||
|
case $line[1] in
|
||||||
|
-r|--remote )
|
||||||
|
_arguments -C \
|
||||||
|
':remote-name:__gitex_remote_names'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
_git-delete-branch() {
|
_git-delete-branch() {
|
||||||
_arguments \
|
_arguments \
|
||||||
|
@ -220,10 +300,17 @@ _git-feature() {
|
||||||
_arguments -C \
|
_arguments -C \
|
||||||
':branch-name:__gitex_feature_branch_names'
|
':branch-name:__gitex_feature_branch_names'
|
||||||
;;
|
;;
|
||||||
|
-r|--remote )
|
||||||
|
_arguments -C \
|
||||||
|
':remote-name:__gitex_remote_names'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
return 0
|
||||||
esac
|
esac
|
||||||
}
|
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
'(--remote -r)'{--remote,-r}'[setup remote tracking branch]'
|
||||||
|
}
|
||||||
|
|
||||||
_git-graft() {
|
_git-graft() {
|
||||||
_arguments \
|
_arguments \
|
||||||
|
@ -231,14 +318,39 @@ _git-graft() {
|
||||||
':dest-branch-name:__gitex_branch_names'
|
':dest-branch-name:__gitex_branch_names'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_git-guilt() {
|
||||||
|
_arguments -C \
|
||||||
|
'(--email -e)'{--email,-e}'[display author emails instead of names]' \
|
||||||
|
'(--ignore-whitespace -w)'{--ignore-whitespace,-w}'[ignore whitespace only changes]' \
|
||||||
|
'(--debug -d)'{--debug,-d}'[output debug information]' \
|
||||||
|
'-h[output usage information]'
|
||||||
|
}
|
||||||
|
|
||||||
_git-ignore() {
|
_git-ignore() {
|
||||||
_arguments -C \
|
_arguments -C \
|
||||||
'(--local -l)'{--local,-l}'[show local gitignore]' \
|
'(--local -l)'{--local,-l}'[show local gitignore]' \
|
||||||
'(--global -g)'{--global,-g}'[show global gitignore]'
|
'(--global -g)'{--global,-g}'[show global gitignore]' \
|
||||||
|
'(--private -p)'{--private,-p}'[show repo gitignore]'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
_git-ignore() {
|
||||||
|
_arguments -C \
|
||||||
|
'(--append -a)'{--append,-a}'[append .gitignore]' \
|
||||||
|
'(--replace -r)'{--replace,-r}'[replace .gitignore]' \
|
||||||
|
'(--list-in-table -l)'{--list-in-table,-l}'[print available types in table format]' \
|
||||||
|
'(--list-alphabetically -L)'{--list-alphabetically,-L}'[print available types in alphabetical order]' \
|
||||||
|
'(--search -s)'{--search,-s}'[search word in available types]'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
_git-merge-into() {
|
||||||
|
_arguments '--ff-only[merge only fast-forward]'
|
||||||
|
_arguments \
|
||||||
|
':src:__gitex_branch_names' \
|
||||||
|
':dest:__gitex_branch_names'
|
||||||
|
}
|
||||||
|
|
||||||
_git-missing() {
|
_git-missing() {
|
||||||
_arguments \
|
_arguments \
|
||||||
':first-branch-name:__gitex_branch_names' \
|
':first-branch-name:__gitex_branch_names' \
|
||||||
|
@ -269,8 +381,16 @@ _git-refactor() {
|
||||||
_arguments -C \
|
_arguments -C \
|
||||||
':branch-name:__gitex_refactor_branch_names'
|
':branch-name:__gitex_refactor_branch_names'
|
||||||
;;
|
;;
|
||||||
|
-r|--remote )
|
||||||
|
_arguments -C \
|
||||||
|
':remote-name:__gitex_remote_names'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
return 0
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
'(--remote -r)'{--remote,-r}'[setup remote tracking branch]'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -279,6 +399,23 @@ _git-squash() {
|
||||||
':branch-name:__gitex_branch_names'
|
':branch-name:__gitex_branch_names'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_git-stamp() {
|
||||||
|
_arguments -C \
|
||||||
|
'(--replace -r)'{--replace,-r}'[replace stamps with same id]'
|
||||||
|
}
|
||||||
|
|
||||||
|
_git-standup() {
|
||||||
|
_arguments -C \
|
||||||
|
'-a[Specify the author of commits. Use "all" to specify all authors.]' \
|
||||||
|
'-d[Show history since N days ago]' \
|
||||||
|
'-D[Specify the date format displayed in commit history]' \
|
||||||
|
'-f[Fetch commits before showing history]' \
|
||||||
|
'-g[Display GPG signed info]' \
|
||||||
|
'-h[Display help message]' \
|
||||||
|
'-L[Enable the inclusion of symbolic links]' \
|
||||||
|
'-m[The depth of recursive directory search]'
|
||||||
|
}
|
||||||
|
|
||||||
_git-summary() {
|
_git-summary() {
|
||||||
_arguments '--line[summarize with lines rather than commits]'
|
_arguments '--line[summarize with lines rather than commits]'
|
||||||
__gitex_commits
|
__gitex_commits
|
||||||
|
@ -291,45 +428,71 @@ _git-undo(){
|
||||||
'(--hard -h)'{--hard,-h}'[wipes your commit(s)]'
|
'(--hard -h)'{--hard,-h}'[wipes your commit(s)]'
|
||||||
}
|
}
|
||||||
|
|
||||||
zstyle ':completion:*:*:git:*' user-commands \
|
zstyle -g existing_user_commands ':completion:*:*:git:*' user-commands
|
||||||
|
|
||||||
|
zstyle ':completion:*:*:git:*' user-commands $existing_user_commands \
|
||||||
alias:'define, search and show aliases' \
|
alias:'define, search and show aliases' \
|
||||||
archive-file:'export the current HEAD of the git repository to a archive' \
|
archive-file:'export the current head of the git repository to an archive' \
|
||||||
|
authors:'generate authors report' \
|
||||||
back:'undo and stage latest commits' \
|
back:'undo and stage latest commits' \
|
||||||
bug:'create a bug branch' \
|
bug:'create bug branch' \
|
||||||
changelog:'populate changelog file with commits since the previous tag' \
|
bulk:'run bulk commands' \
|
||||||
commits-since:'list commits since a given date' \
|
changelog:'generate a changelog report' \
|
||||||
contrib:'display author contributions' \
|
chore:'create chore branch' \
|
||||||
count:'count commits' \
|
clear-soft:'soft clean up a repository' \
|
||||||
create-branch:'create local and remote branch' \
|
clear:'rigorously clean up a repository' \
|
||||||
delete-branch:'delete local and remote branch' \
|
commits-since:'show commit logs since some date' \
|
||||||
delete-merged-branches:'delete merged branches'\
|
contrib:'show user contributions' \
|
||||||
delete-submodule:'delete submodule' \
|
count:'show commit count' \
|
||||||
delete-tag:'delete local and remote tag' \
|
create-branch:'create branches' \
|
||||||
effort:'display effort statistics' \
|
delete-branch:'delete branches' \
|
||||||
extras:'git-extras' \
|
delete-merged-branches:'delete merged branches' \
|
||||||
feature:'create a feature branch' \
|
delete-submodule:'delete submodules' \
|
||||||
|
delete-tag:'delete tags' \
|
||||||
|
delta:'lists changed files' \
|
||||||
|
effort:'show effort statistics on file(s)' \
|
||||||
|
extras:'awesome git utilities' \
|
||||||
|
feature:'create/merge feature branch' \
|
||||||
|
force-clone:'overwrite local repositories with clone' \
|
||||||
fork:'fork a repo on github' \
|
fork:'fork a repo on github' \
|
||||||
fresh-branch:'create empty local branch' \
|
fresh-branch:'create fresh branches' \
|
||||||
gh-pages:'create the GitHub Pages branch' \
|
gh-pages:'create the github pages branch' \
|
||||||
graft:'merge commits from source branch to destination branch' \
|
graft:'merge and destroy a given branch' \
|
||||||
ignore:'add patterns to .gitignore' \
|
guilt:'calculate change between two revisions' \
|
||||||
info:'show info about the repository' \
|
ignore-io:'get sample gitignore file' \
|
||||||
local-commits:'list unpushed commits on the local branch' \
|
ignore:'add .gitignore patterns' \
|
||||||
|
info:'returns information on current repository' \
|
||||||
|
local-commits:'list local commits' \
|
||||||
lock:'lock a file excluded from version control' \
|
lock:'lock a file excluded from version control' \
|
||||||
locked:'ls files that have been locked' \
|
locked:'ls files that have been locked' \
|
||||||
|
merge-into:'merge one branch into another' \
|
||||||
|
merge-repo:'merge two repo histories' \
|
||||||
missing:'show commits missing from another branch' \
|
missing:'show commits missing from another branch' \
|
||||||
|
mr:'checks out a merge request locally' \
|
||||||
|
obliterate:'rewrite past commits to remove some files' \
|
||||||
pr:'checks out a pull request locally' \
|
pr:'checks out a pull request locally' \
|
||||||
|
psykorebase:'rebase a branch with a merge commit' \
|
||||||
|
pull-request:'create pull request to GitHub project' \
|
||||||
|
reauthor:'replace the author and/or committer identities in commits and tags' \
|
||||||
rebase-patch:'rebases a patch' \
|
rebase-patch:'rebases a patch' \
|
||||||
refactor:'create a refactor branch' \
|
refactor:'create refactor branch' \
|
||||||
release:'commit, tag and push changes to the repository' \
|
release:'commit, tag and push changes to the repository' \
|
||||||
|
rename-branch:'rename a branch' \
|
||||||
rename-tag:'rename a tag' \
|
rename-tag:'rename a tag' \
|
||||||
repl:'read-eval-print-loop' \
|
repl:'git read-eval-print-loop' \
|
||||||
reset-file:'reset one file' \
|
reset-file:'reset one file' \
|
||||||
root:'show path of root' \
|
root:'show path of root' \
|
||||||
setup:'setup a git repository' \
|
scp:'copy files to ssh compatible `git-remote`' \
|
||||||
|
sed:'replace patterns in git-controlled files' \
|
||||||
|
setup:'set up a git repository' \
|
||||||
|
show-merged-branches:'show merged branches' \
|
||||||
show-tree:'show branch tree of commit history' \
|
show-tree:'show branch tree of commit history' \
|
||||||
squash:'merge commits from source branch into the current one as a single commit' \
|
show-unmerged-branches:'show unmerged branches' \
|
||||||
summary:'repository summary' \
|
squash:'import changes from a branch' \
|
||||||
touch:'one step creation of new files' \
|
stamp:'stamp the last commit message' \
|
||||||
undo:'remove the latest commit' \
|
standup:'recall the commit history' \
|
||||||
|
summary:'show repository summary' \
|
||||||
|
sync:'sync local branch with remote branch' \
|
||||||
|
touch:'touch and add file to the index' \
|
||||||
|
undo:'remove latest commits' \
|
||||||
unlock:'unlock a file excluded from version control'
|
unlock:'unlock a file excluded from version control'
|
||||||
|
|
Loading…
Reference in a new issue