Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 02/16] _git: fix usage of ->int: for some entries in _git-config
- X-seq: zsh-workers 31595
- From: Øystein Walle <oystwa@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 02/16] _git: fix usage of ->int: for some entries in _git-config
- Date: Sun, 28 Jul 2013 18:21:59 +0200
- Cc: m0viefreak.cm@xxxxxxxxxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references; bh=SwXR070fNVYDgdpcYJ/Rj0da2KkUjkpDeACqbg5CIas=; b=wICQHgdG9F0JgGJcxetaVL/VL5TxhkJEDCIw52oLAmtWjzwmXqfTb+SJtUF+syEitd tJhon77atPcGptCpnIuSh3mQUPLn7MOf7Aj+042NqecpP6GMjozmoVoB2ZJoE6QD3hzu gx/5yBR9nrpPabKDxD1HsR/l5T+Ub7WmEEvGSxw4qVxUdAqcNAQtuXezx8HviWnkxwmz d9GHshOGwtTmcAVhpnl/HDpZhw8WmpW5NH4QOfNcraPUIrBWyyDQvA1l4iqWpcp4sb31 PjRlumZ9I7P72Laoo4WBo1uqRWjU4ofWe2mYTP/MXiLWR6CbCBJ0Exi6E+HXjYE2nJUm w8Fg==
- In-reply-to: <cover.1375006129.git.oystwa@gmail.com>
- In-reply-to: <cover.1375006129.git.oystwa@gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <cover.1375006129.git.oystwa@gmail.com>
- References: <cover.1375006129.git.oystwa@gmail.com>
From: m0viefreak <m0viefreak.cm@xxxxxxxxxxxxxx>
---
Completion/Unix/Command/_git | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 49a213c..c921d8f 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -1821,7 +1821,7 @@ _git-config () {
format.signoff:'enable --signoff by default::->bool:false'
'gc.*.reflogexpire:grace period for git reflog expire::->days:90'
'gc.*.reflogexpireunreachable:grace period for git reflog expire for unreachable entries::->days:30'
- gc.aggressiveWindow:'window size used in delta compression algorithm:->int:250'
+ gc.aggressiveWindow:'window size used in delta compression algorithm::->int:250'
gc.auto:'minimum limit for packing loose objects with --auto::->int:6700'
gc.autopacklimit:'minimum limit for packing packs with --auto::->int:50'
gc.packrefs:'allow git gc to run git pack-refs::->gc.packrefs:true'
@@ -1848,8 +1848,8 @@ _git-config () {
'gitcvs.*.dbTableNamePrefix:database table name prefix:prefix:->string'
gitcvs.usecrlfattr:'use end-of-line conversion attributes::->bool:false'
gitcvs.allbinary:'treat all files from CVS as binary::->bool:false'
- gui.commitmsgwidth:'width of commit message window:width:->int:75'
- gui.diffcontext:'number of context lines used in diff window:context:->int:5'
+ gui.commitmsgwidth:'width of commit message window:width::->int:75'
+ gui.diffcontext:'number of context lines used in diff window:context::->int:5'
gui.encoding:'encoding to use for displaying file contents::->encoding'
gui.matchtrackingbranch:'create branches that track remote branches::->bool:false'
gui.newbranchtemplate:'suggested name for new branches:template:->string'
@@ -1879,8 +1879,8 @@ _git-config () {
http.sslCertPasswordProtected:'prompt for a password for the SSL certificate::->bool:false'
http.sslCAInfo:'file containing CA certificates to verify against for HTTPS:CA certificates file:_files'
http.sslCAPath:'directory containing files with CA certificates to verify against for HTTPS:CA certificates directory:_directories'
- http.maxRequests:'how many HTTP requests to launch in parallel:maximum number of requests:->int:5'
- http.minSessions:'number of curl sessions to keep across requests:mininmum number of sessions:->int:1'
+ http.maxRequests:'how many HTTP requests to launch in parallel:maximum number of requests::->int:5'
+ http.minSessions:'number of curl sessions to keep across requests:mininmum number of sessions::->int:1'
http.postBuffer:'maximum size of buffer used by smart HTTP transport when POSTing:maximum POST buffer size:->bytes:1m'
http.lowSpeedLimit:'lower limit for HTTP transfer-speed:low transfer-speed limit:->int'
http.lowSpeedTime:'duration for http.lowSpeedLimit:time:->int'
@@ -1937,12 +1937,12 @@ _git-config () {
notes.rewrite.rebase:'copy notes from original to rewritten commit when running git rebase::->bool:true'
notes.rewriteMode:'what to do when target commit already has a not when rewriting::->notes.rewriteMode'
notes.rewriteRef:'refname to use when rewriting::->refname'
- pack.window:'size of window:window size:->int:10'
- pack.depth:'maximum delta depth:maximum delta depth:->int:50'
+ pack.window:'size of window:window size::->int:10'
+ pack.depth:'maximum delta depth:maximum delta depth::->int:50'
pack.windowMemory:'window size limit:maximum window size:->bytes:0'
pack.compression:'compression level::->compression:-1'
pack.deltaCacheSize:'maximum amount of memory for caching deltas:maximum delta cache size:->bytes:256m'
- pack.deltaCacheLimit:'maximum size of deltas:maximum delta size:->int:1000'
+ pack.deltaCacheLimit:'maximum size of deltas:maximum delta size::->int:1000'
pack.threads:'number of threads to use for searching for best delta matches:number of threads:->int'
pack.indexVersion:'default pack index version:index version:->string'
pack.packSizeLimit:'maximum size of packs:maximum size of packs:->bytes'
@@ -2047,7 +2047,7 @@ _git-config () {
'svn-remote.*.branches:branch mappings:branch mapping:->string'
'svn-remote.*.tags:tag mappings:tag mapping:->string'
tar.umask:'umask to apply::->umask'
- transfer.unpackLimit:'default value for fetch.unpackLimit and receive.unpackLimit:unpack limit:->int:100'
+ transfer.unpackLimit:'default value for fetch.unpackLimit and receive.unpackLimit:unpack limit::->int:100'
'url.*.insteadOf:string to start URLs with:prefix:->string'
'url.*.pushInsteadOf:string to start URLs to push to with:prefix:->string'
user.email:'email address used for commits::_email_addresses'
--
1.8.2.2
Messages sorted by:
Reverse Date,
Date,
Thread,
Author