mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-04 10:41:11 +02:00
23822: merge in git rm completion fixes from Nikolai Weibull's repository.
This commit is contained in:
parent
a5ccfcf70b
commit
cf6c33dcf9
2 changed files with 16 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-09-21 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 23822: Completion/Unix/Command/_git: merge in git rm
|
||||
completion fixes from Nikolai Weibull's repository.
|
||||
|
||||
2007-09-18 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* users/11852: Completion/Base/Completer/_expand_alias:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#compdef git git-annotate git-apply git-checkout-index git-clean git-commit-tree git-describe git-hash-object git-index-pack git-init-db git-instaweb git-merge-index git-merge-tree git-mktag git-mktree git-pack-objects git-prune-packed git-read-tree git-remote git-unpack-objects git-update-index git-write-tree git-cat-file git-diff-index git-diff-files git-diff-stages git-diff-tree git-fsck-objects git-ls-files git-ls-tree git-quiltimport git-merge-base git-name-rev git-rev-list git-show-index git-tar-tree git-unpack-file git-var git-verify-pack git-clone-pack git-fetch-pack git-http-fetch git-local-fetch git-peek-remote git-receive-pack git-send-pack git-ssh-fetch git-ssh-upload git-update-server-info git-upload-pack git-add git-am git-applymbox git-bisect git-branch git-checkout git-cherry-pick git-clone git-commit git-diff git-fetch git-format-patch git-grep git-log git-ls-remote git-merge git-mv git-octopus git-pull git-push git-rebase git-repack git-reset git-resolve git-revert git-shortlog git-show-branch git-status git-verify-tag git-whatchanged git-applypatch git-archimport git-archive git-convert-objects git-cvsimport git-lost-found git-merge-one-file git-prune git-relink git-svnimport git-symbolic-ref git-tag git-update-ref git-check-ref-format git-cherry git-count-objects git-daemon git-get-tar-commit-id git-mailinfo git-mailsplit git-patch-id git-request-pull git-send-email git-stripspace
|
||||
#compdef git git-annotate git-apply git-checkout-index git-clean git-commit-tree git-describe git-hash-object git-index-pack git-init-db git-instaweb git-merge-index git-merge-tree git-mktag git-mktree git-pack-objects git-prune-packed git-read-tree git-remote git-unpack-objects git-update-index git-write-tree git-cat-file git-diff-index git-diff-files git-diff-stages git-diff-tree git-fsck-objects git-ls-files git-ls-tree git-quiltimport git-merge-base git-name-rev git-rev-list git-show-index git-tar-tree git-unpack-file git-var git-verify-pack git-clone-pack git-fetch-pack git-http-fetch git-local-fetch git-peek-remote git-receive-pack git-send-pack git-ssh-fetch git-ssh-upload git-update-server-info git-upload-pack git-add git-am git-applymbox git-bisect git-branch git-checkout git-cherry-pick git-clone git-commit git-diff git-fetch git-format-patch git-grep git-log git-ls-remote git-merge git-mv git-octopus git-pull git-push git-rebase git-repack git-reset git-resolve git-revert git-shortlog git-show-branch git-status git-verify-tag git-whatchanged git-applypatch git-archimport git-archive git-convert-objects git-cvsimport git-lost-found git-merge-one-file git-prune git-relink git-svnimport git-symbolic-ref git-tag git-update-ref git-check-ref-format git-cherry git-count-objects git-daemon git-get-tar-commit-id git-mailinfo git-mailsplit git-patch-id git-request-pull git-rm git-send-email git-stripspace
|
||||
|
||||
# Commands not completed:
|
||||
# git-sh-setup
|
||||
|
@ -182,6 +182,7 @@ _git_commands () {
|
|||
'rev-list:lists commit object in reverse chronological order'
|
||||
'rev-parse:picks out and massages parameters for other git commands'
|
||||
'revert:reverts an existing commit'
|
||||
'rm:remove files from the working tree and from the index'
|
||||
'send-email:sends patch-e-mails out of "format-patch --mbox" output'
|
||||
'send-pack:pushes to a remote repository, intelligently'
|
||||
'shortlog:summarizes git log output'
|
||||
|
@ -1394,6 +1395,15 @@ _git-request-pull () {
|
|||
#_git-rev-parse () {
|
||||
#}
|
||||
|
||||
_git-rm () {
|
||||
_arguments -S -A '-*' \
|
||||
'-f[override the up-to-date check]' \
|
||||
"-n[don't actually remove the files, just show if they exist in the index]" \
|
||||
'-r[allow recursive removal when a leading directory-name is given]' \
|
||||
'--cached[only remove files from the index]' \
|
||||
'*:files:__git_cached_files' && ret=0
|
||||
}
|
||||
|
||||
_git-send-email () {
|
||||
_arguments \
|
||||
'(--no-chain-reply-to)--chain-reply-to[each email will be sent as a reply to the previous one sent]' \
|
||||
|
|
Loading…
Reference in a new issue