summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_git
AgeCommit message (Collapse)AuthorFilesLines
2013-10-2131862: _git: Add status.short and status.branchØystein Walle1-0/+2
2013-10-2131863: _git: Add new arguments introduced in Git v1.8.4Øystein Walle1-3/+10
2013-10-2131861: _git: Add git-clean -i/--interactive supportØystein Walle1-0/+2
- Add -i and --interactive to _git-clean() - Add column.clean configuration variable
2013-10-2131855: _git: revert: add '-e,--edit'm0viefreak1-1/+2
2013-10-2131856: _git: fix a few "undocumented" optionsm0viefreak1-7/+2
commit: '--null' is documented relink: '-h,--help' are never documented for subcommands but always exist verify-tag: '-v,--verbose' are documented with updated description diff: '--cumulative' is deprecated -> remove
2013-10-2131858: _git: fix wrong default valueØystein Walle1-1/+1
2013-10-2131857: _git: Remove unsupported -q option from diff optionsm0viefreak1-1/+0
2013-10-2131859: _git: re-order the last two git-blame argumentsØystein Walle1-2/+2
The proper syntax is git blame [<commit>] <file> where <commit> is optional.
2013-10-2131854: _git: Make git-show accept diff argumentsØystein Walle1-1/+2
2013-10-2131853: _git: Add missing column.* config variablesØystein Walle1-0/+14
2013-09-2231754: _git: git rm: make git rm --cached work as intendedm0viefreak1-5/+1
While limiting the completion to __git_changed-in-index_files makes perfect sense for "git diff", it is wrong to use for "git rm", because it prevents it from completing files present in HEAD. Giving --cached to git rm is supposed to "just remove it from the index, keep the working tree copy" and is in no way related to the file needing to be modified in the index in the first place.
2013-09-2231752: _git: change completion text for consistencyØystein Walle1-1/+1
2013-09-2231753: _git: correct some "undocumented" optionsm0viefreak1-10/+6
diff options: --cumulative is deprecated --> remove -G / -S: reword -S to emphase the difference to -G revision options: --abbrev: reword, to emphase the --abbrev-commit requirement
2013-09-2231751: _git: remove TODOs of actually documented optionsØystein Walle1-4/+0
No functional changes.
2013-09-2231749: _git: fix some typos in description textsØystein Walle1-16/+16
2013-09-2231748: _git: support completing remote branches without <remote>/ prefixm0viefreak1-0/+16
this is used in git 1.8's git checkout <branch> as a shorthand for git checkout -b <branch> --track <remote>/<branch> in case <branch> exists on exactly one remote and is not a local branch
2013-09-2231746: _git: reword _git-config TODOm0viefreak1-1/+1
Support for merge drivers, filter drivers, and diff drivers is missing.
2013-09-2231750: _git: add new configuration options to match latest git v1.8.3Øystein Walle1-1/+100
2013-09-2231747: _git: completion updates to match latest git v1.8.3 part 2Øystein Walle1-27/+91
2013-09-2231755: _git: completion updates to match latest git v1.8.3m0viefreak1-64/+186
2013-09-2231745: _git: correctly use __git_guard_number in some casesm0viefreak1-5/+5
The space is relevant to make the help text work as intended.
2013-09-2231744: _git: make git submodule <cmd> completion workm0viefreak1-1/+1
The -A parameter in the main completion stopped completion in the subcommands from working. Remove it.
2013-09-2231743: _git: fix usage of ->int: for some entries in _git-configm0viefreak1-9/+9
2013-09-2231741: _git: fix a wrong variable in __git_config_valuesm0viefreak1-1/+1
This probably was a copy/paste mistake.
2013-09-1431726: _git: add few more arguments for cherry-pick and revertLuka Perkov1-0/+6
Signed-off-by: Luka Perkov <luka@openwrt.org>
2013-09-0731708: _git: add --fixup and --squash options to commitLuka Perkov1-0/+2
Signed-off-by: Luka Perkov <luka@openwrt.org>
2013-09-0631702: check for git rebase -i for autosquashLuka Perkov1-1/+1
2013-04-2531288: _git: fix shortlog completerRamkumar Ramachandra1-1/+26
Currently, __git-shortlog () says that 'git shortlog' can only accept commits as arguments (probably because the official documentation says this). This is entirely untrue: shortlog can accept commit-range-or-file, just like log can. Fix the completer by copying out segments from the __git-log () function. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
2013-04-2131289: _git: branch.*.pushremote, remote.pushdefaultRamkumar Ramachandra1-0/+2
The configuration variables branch.*.pushremote and remote.pushdefault are relatively new, and are currently not completed by ZSH. Fix this. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
2013-04-2131286: _git: add a couple of browsersRamkumar Ramachandra1-0/+2
Add google-chrome/chromium to the list of builtinbrowsers in __git_browsers (). Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
2013-04-2031159: git: Pass prefix filter to ls-files even if it matches no filesTorstein Hegge1-1/+1
When a branch or tag name is completed with zsh in a large git repo, the completion is slow if the given prefix doesn't match a file or directory in the current working directory. Testing with linux.git, which contains release tags like v3.9 and a directory virt/: git log v<tab> takes about 0.5 seconds, while git log v3<tab> takes about 25 seconds. (Timed using zsh 4.3.17, on a fairly slow cpu. zsh from git appears to be quite a bit faster, but the difference between completing v and v3 is still large.) The difference between the two is that v<tab> passes the result of v* to git ls-files while v3<tab> determines that v3* matches no files, and passes an empty prefix to git ls-files. So git ls-files lists all files in the repo and passes that on to _multi_parts. Making git do the expansion of the * after the prefix lets git ls-files v3* return an empty list, making _multi_parts job easier. This does not affect the behavior of git log <tab>, but improves the performance of partial tag and branch tab-completion in the common case where file names and tag/branch names don't overlap.
2013-04-0531221: Handle zero defined aliases betterFrank Terbeck1-1/+7
2012-11-07Benjamin R. Haskell: 30737: make custom completions for git aliases easierOliver Kiddle1-1/+1
2012-11-07users/17382: complete URLs for vim and make _remote_files moreOliver Kiddle1-1/+1
consistent with _files
2012-03-06unposted: fix a typo in _git from previous commit (reolved)Mikael Magnusson1-1/+1
2012-03-0630317: complete git merge --ff-onlyClint Adams1-0/+1
2012-02-1030199: add (-.) to many completion _files globsOliver Kiddle1-2/+2
2011-12-1329998: _git: fix a typo (--rerbose).Mikael Magnusson1-1/+1
2011-12-0929918: Completion: Add new _remote_files() helper and use it to reduce code ↵Simon Ruderich1-34/+1
duplication.
2011-11-2429916: Completion/Unix/Command/_git: Prevent clash with _remote_files() in _ssh.Simon Ruderich1-2/+2
2011-08-1729698: Completion/Unix/Command/_git: Complete diff options for git logNikolai Weibull1-1/+4
2011-07-22* 29582, 29589: Update handling of third-party Git commandsNikolai Weibull1-65/+82
2011-07-22unposted: Completion/Unix/Command/_git: Use _files, not _path_files.Nikolai Weibull1-1/+1
2011-07-21unposted: Completion/Unix/Command/_git: Adjust some TODO items.Nikolai Weibull1-4/+3
2011-07-21unposted: Completion/Unix/Command/_git: Update git-add completion to notNikolai Weibull1-7/+10
complete already given file arguments and also to not list file completions if an option is being completed.
2011-07-21unposted: Completion/Unix/Command/_git: Fix bug in git-add completion thatNikolai Weibull1-1/+1
prevented -f option from being used correctly.
2011-07-21unposted: Completion/Unix/Command/_git: Move _gitk and _tig to correctNikolai Weibull1-10/+10
location.
2011-07-2129272: Completion/Unix/Command/_git: Use return values correctly accross allNikolai Weibull1-160/+235
completion functions.
2011-07-0129521: _git: Add `user-commands' support again.Frank Terbeck1-0/+3
2011-07-0129519: _git: Pick up addon completions from $fpath.Frank Terbeck1-0/+44