1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00

Mikael Magnusson: 25590: update "git add" completion.

This commit is contained in:
Clint Adams 2008-09-01 20:38:03 +00:00
parent a156e4714e
commit fd2f37d84b
2 changed files with 8 additions and 4 deletions

View file

@ -1,5 +1,8 @@
2008-09-01 Clint Adams <clint@zsh.org>
* Mikael Magnusson: 25590: Completion/Unix/Command/_git:
update "git add" completion.
* Frank Terbeck: 25588: Completion/Unix/Command/_git: add
--no-pager option to git completion.

View file

@ -1322,12 +1322,13 @@ _git-add () {
declare -A opt_args
_arguments -C -S \
'-n[do not actually add files; only show which ones would be added]' \
'-v[show files as they are added]' \
'-f[allow adding otherwise ignored files]' \
'(-n --dry-run)'{-n,--dry-run}'[do not actually add files; only show which ones would be added]' \
'(-v --verbose)'{-v,--verbose}'[show files as they are added]' \
'(-f --force)'{-f,--force}'[allow adding otherwise ignored files]' \
'(-i --interactive : -)'{-i,--interactive}'[add contents interactively to the index]' \
'(-p --patch : -)'{-p,--patch}'[like -i but go directly into patch mode for specified files]' \
'-u[Update only files git already knows about]' \
'(-u --update)'{-u,--update}'[update only files git already knows about]' \
'(-A --all)'{-A,--all}'[act as both add . and add -u]' \
'--refresh[do not add files, but refresh their stat() info in the index]' \
'--ignore-errors[continue adding if an error occurs]' \
'*:file:->files' && ret=0