-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathConfig.ps1
More file actions
408 lines (381 loc) · 13 KB
/
Config.ps1
File metadata and controls
408 lines (381 loc) · 13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# Copyright (C) 2024 kzrnm
# Based on git-completion.bash (https://github.com/git/git/blob/HEAD/contrib/completion/git-completion.bash).
# Distributed under the GNU General Public License, version 2.0.
using namespace System.Management.Automation;
function Complete-GitSubCommand-config {
[CmdletBinding(PositionalBinding = $false)]
[OutputType([CompletionResult[]])]
param(
[CommandLineContext]
[Parameter(Position = 0, Mandatory)]$Context
)
$gitVersion = gitVersion
if ($gitVersion -lt [version]::new(2, 46)) {
Complete-GitSubCommand-config-Git2_45 $Context
return
}
[string] $Prev = $Context.PreviousWord()
[string] $Current = $Context.CurrentWord()
$subcommands = gitResolveBuiltins $Context.Command
[string] $subcommand = $Context.SubcommandWithoutGlobalOption()
if ($subcommand -notin $subcommands) {
if ($Context.HasDoubledash()) { return }
if ($Current -eq '-') {
$script:__helpCompletion
return
}
else {
$subcommands | gitcomp -Current $Current -DescriptionBuilder {
switch ($_) {
"list" { 'List all variables set in config file' }
"get" { 'Emits the value of the specified key' }
"set" { 'Set value for one or more config options' }
"unset" { 'Unset value for one or more config options' }
"rename-section" { 'Rename the given section to a new name' }
"remove-section" { 'Remove the given section from the configuration file' }
"edit" { 'Opens an editor to modify the specified config file' }
}
}
return
}
}
$shortOpts = Get-GitShortOptions $Context.Command -Subcommand $subcommand -Current $Current
if ($shortOpts) { return $shortOpts }
if ($Current.StartsWith('--')) {
gitCompleteResolveBuiltins $Context.Command $subcommand -Current $Current
return
}
if ($Prev.StartsWith('--')) {
if ((gitResolveBuiltins $Context.Command $subcommand) -eq "$Prev=") {
return @()
}
}
switch ($subcommand) {
'get' { completeGitConfigGetSetVariables $Context }
'unset' { completeGitConfigGetSetVariables $Context }
'set' {
if ($Prev -like '*.*') {
completeConfigVariableValue -VarName $Prev -Current $Current
}
else {
completeConfigVariableName -Current $Current
}
}
}
return
}
function Complete-GitSubCommand-config-Git2_45 {
[CmdletBinding(PositionalBinding = $false)]
[OutputType([CompletionResult[]])]
param(
[CommandLineContext]
[Parameter(Position = 0, Mandatory)]$Context
)
$Prev = $Context.PreviousWord()
$Current = $Context.CurrentWord()
if (!$Context.HasDoubledash()) {
$shortOpts = Get-GitShortOptions $Context.Command -Subcommand $subcommand -Current $Current
if ($shortOpts) { return $shortOpts }
if ($Prev -in ('--get', '--get-all', '--unset', '--unset-all')) {
completeGitConfigGetSetVariables $Context
return
}
if ($Current.StartsWith('--')) {
gitCompleteResolveBuiltins $Context.Command -Current $Current
return
}
}
if ($Prev -like '*.*') {
completeConfigVariableValue -Current $Current -VarName $Prev
}
else {
completeConfigVariableName -Current $Current
}
}
function completeGitConfigGetSetVariables {
[CmdletBinding(PositionalBinding = $false)]
[OutputType([string[]])]
param(
[Parameter(Position = 0, Mandatory)][CommandLineContext]$Context
)
gitConfigGetSetVariables $Context | completeList -Current $Context.CurrentWord() -ResultType ParameterValue -DescriptionBuilder {
Get-GitConfigVariableDescription $_
}
}
# __git_config_get_set_variables
function gitConfigGetSetVariables {
[CmdletBinding(PositionalBinding = $false)]
[OutputType([string[]])]
param(
[Parameter(Position = 0, Mandatory)][CommandLineContext]$Context
)
$file = @()
$prev = ''
for ($i = $Context.DoubledashIndex - 1; $i -gt $Context.CommandIndex; $i--) {
$word = $Context.Words[$i]
if (($word -in @('--system', '--global', '--local')) -or ($word -like "--file=*")) {
$file = @($word)
break
}
elseif ($word -cmatch '^-([^-]*f|-file)$') {
$file = @('--file', $prev)
}
$prev = $word
}
__git config @file --name-only --list
}
# __git_complete_config_variable_name_and_value
function completeConfigOptionVariableNameAndValue {
[OutputType([CompletionResult[]])]
param(
[Parameter(Mandatory)][AllowEmptyString()][string] $Current,
[string] $Prefix = ''
)
if ($Current -match '(.*)=(.*)') {
$VarName = $Matches[1]
return (completeConfigVariableValue -VarName $VarName -Prefix "$Prefix$VarName=" -Current $Matches[2])
}
else {
return (completeConfigVariableName -Prefix $Prefix -Suffix "=" -Current $Current)
}
}
# __git_complete_config_variable_value
function completeConfigVariableValue {
[OutputType([CompletionResult[]])]
param(
[Parameter(Mandatory)][AllowEmptyString()][string] $Current,
[Parameter(Mandatory)][AllowEmptyString()][string] $VarName,
[string] $Prefix = ''
)
function remote {
$remotes = [string[]](__git remote)
$remotes | completeList -Current $Current -Prefix $Prefix -ResultType ParameterValue
}
$v = $VarName.ToLowerInvariant()
$candidates = switch -Wildcard ($v) {
'branch.*.remote' {
gitRemote
continue
}
'branch.*.pushremote' {
gitRemote
continue
}
'branch.*.pushdefault' {
gitRemote
continue
}
'remote.pushdefault' {
gitRemote
continue
}
'branch.*.merge' {
gitCompleteRefs -Current $Current -Prefix $Prefix
return
}
'branch.*.rebase' {
$gitPullRebaseConfig
continue
}
'remote.*.fetch' {
if ($Current -eq '') {
$result = 'refs/heads'
return [CompletionResult]::new(
"${Prefix}$result",
$result,
'ParameterValue',
$result
)
}
try {
$remote = ($v -replace '^remote\.' -replace '\.fetch$')
(__git ls-remote $remote 'refs/heads/*') -match "(\S+)\s+(\S+)" > $null
# $hash = $Matches[1]
$ref = $Matches[2]
$result = "${ref}:refs/remotes/$remote/$($ref -replace '^refs/heads/')"
return [CompletionResult]::new(
"${Prefix}$result",
$result,
'ParameterValue',
$result
)
}
catch {
# not found
}
return
}
'remote.*.push' {
__git for-each-ref --format='%(refname):%(refname)' refs/heads
continue
}
'pull.twohead' {
gitListMergeStrategies
continue
}
'pull.octopus' {
gitListMergeStrategies
continue
}
'color.pager' {
'false', 'true'
continue
}
'color.*.*' {
'normal', 'black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white', 'bold', 'dim', 'ul', 'blink', 'reverse'
continue
}
'color.*' {
'false', 'true', 'always', 'never', 'auto'
continue
}
'diff.submodule' {
$script:gitDiffSubmoduleFormats
continue
}
'diff.algorithm' {
$script:gitDiffAlgorithms
continue
}
'http.proxyAuthMethod' {
$gitHttpProxyAuthMethod
continue
}
'help.format' {
'man', 'info', 'web', 'html'
continue
}
'log.date' {
$script:gitLogDateFormats
continue
}
'sendemail.aliasfiletype' {
'mutt', 'mailrc', 'pine', 'elm', 'gnus'
continue
}
'sendemail.confirm' {
$script:gitSendEmailConfirmOptions
continue
}
'sendemail.suppresscc' {
$script:gitSendEmailSuppressccOptions
continue
}
'sendemail.transferencoding' {
'7bit', '8bit', 'quoted-printable', 'base64'
continue
}
# git-completion.bash does not complete below cases.
'merge.conflictStyle' {
$script:gitConflictSolver
continue
}
'push.recurseSubmodules' {
$script:gitPushRecurseSubmodules
continue
}
'fetch.recurseSubmodules' {
$script:gitFetchRecurseSubmodules
continue
}
'diff.colorMoved' {
$script:gitColorMovedOpts
continue
}
'diff.colorMovedWS' {
$script:gitColorMovedWsOpts
continue
}
'diff.wsErrorHighlight' {
$script:gitWsErrorHighlightOpts
continue
}
'column.*' {
if ($v.Substring(7) -cnotin @('ui', 'branch', 'clean', 'status', 'tag')) {
return
}
$script:gitColumnUiPatterns
continue
}
'pull.rebase' {
$gitPullRebaseConfig
continue
}
}
$candidates | completeList -Current $Current -Prefix $Prefix -ResultType ParameterValue
}
# __git_complete_config_variable_name
function completeConfigVariableName {
[OutputType([CompletionResult[]])]
param(
[Parameter(Mandatory)][AllowEmptyString()][string] $Current,
[string] $Prefix = '',
[string] $Suffix = ''
)
$DescriptionBuilder = [scriptblock] {
Get-GitConfigVariableDescription $_
}
if ($Current -match "(branch|guitool|difftool|man|mergetool|remote|submodule|url)\.(.*)\.([^\.]*)") {
$section = $Matches[1]
$second = $Matches[2]
gitSecondLevelConfigVarsForSection $section | ForEach-Object {
"$section.$second.$_"
} | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder -Suffix $Suffix
return
}
if ($Current -match "branch\.(.*)") {
$section = 'branch'
$second = $Matches[1]
gitHeads -Current $second | ForEach-Object { "$section.$_." } | completeList -DescriptionBuilder $DescriptionBuilder
gitFirstLevelConfigVarsForSection $section | ForEach-Object {
"$section.$_"
} | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder -Suffix $Suffix
return
}
if ($Current -match "pager\.(.*)") {
$section = 'pager'
$second = $Matches[1]
gitAllCommands main others alias nohelpers | ForEach-Object {
"$section.$_"
} | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder -Suffix $Suffix
return
}
if ($Current -match "remote\.(.*)") {
$section = 'remote'
$second = $Matches[1]
__git remote | Where-Object {
$_.StartsWith($second)
} | ForEach-Object {
"$section.$_."
} | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder
gitFirstLevelConfigVarsForSection $section | ForEach-Object {
"$section.$_"
} | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder -Suffix $Suffix
return
}
if ($Current -match "submodule\.(.*)") {
$section = 'submodule'
$second = $Matches[1]
$gitTopPath = (__git rev-parse --show-toplevel)
__git config -f "$gitTopPath/.gitmodules" --name-only --list 2>$null |
ForEach-Object {
if ($_ -match 'submodule\.(.*)\.path') {
$sub = $Matches[1]
"$section.$sub."
}
} | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder
gitFirstLevelConfigVarsForSection $section | ForEach-Object {
"$section.$_"
} | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder -Suffix $Suffix
return
}
if ($Current -match "([^\.]*)\.(.*)") {
$section = $Matches[1]
gitConfigVars | Where-Object { !$_.EndsWith('.') } | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder -Suffix $Suffix
return
}
else {
gitConfigSections | ForEach-Object { "$_." } | completeList -Current $Current -Prefix $Prefix -DescriptionBuilder $DescriptionBuilder
}
return
}