-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-aliases-extra.psd1
More file actions
74 lines (74 loc) · 2.06 KB
/
git-aliases-extra.psd1
File metadata and controls
74 lines (74 loc) · 2.06 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
@{
RootModule = 'git-aliases-extra.psm1'
ModuleVersion = '0.1.5'
GUID = 'a5c2859e-7dce-4853-9db5-8cb7927dbdda'
Author = 'PhysShell'
CompanyName = ''
Copyright = 'Copyright (c) PhysShell 2026.'
Description = 'Custom git aliases and robust tab completion helpers for PowerShell.'
PowerShellVersion = '5.1'
HelpInfoURI = 'https://github.com/PhysShell/git-aliases-extra'
CompatiblePSEditions = @('Desktop', 'Core')
FunctionsToExport = @(
'Test-InGitRepo',
'Test-GitInProgress',
'Test-WorkingTreeClean',
'Get-CurrentBranch',
'Test-GitRefExists',
'Get-Git-Aliases',
'UpMerge',
'UpRebase',
'gapt',
'gcor',
'gdct',
'gdt',
'gdnolock',
'gdv',
'gfo',
'gwt',
'gwta',
'gwtl',
'gwtm',
'gwtr',
'gwtp',
'glp',
'gmtl',
'gmtlvim',
'gtv',
'gtl',
'gwip',
'gunwip',
'grsh',
'gccd',
'grl',
'ghash',
'gfp',
'gsw',
'gswc',
'Register-GitAliasCompletion'
)
AliasesToExport = @('gum', 'gur', 'gh')
CmdletsToExport = @()
VariablesToExport = '*'
RequiredModules = @(
@{
ModuleName = 'posh-git'
ModuleVersion = '1.1.0'
},
@{
ModuleName = 'git-aliases'
ModuleVersion = '0.3.8'
}
)
PrivateData = @{
PSData = @{
Tags = @('git', 'aliases', 'completion', 'posh-git', 'powershell', 'worktree')
ProjectUri = 'https://github.com/PhysShell/git-aliases-extra'
LicenseUri = 'https://github.com/PhysShell/git-aliases-extra/blob/main/LICENSE'
IconUri = 'https://raw.githubusercontent.com/PhysShell/git-aliases-extra/main/assets/icon.png'
RepositorySourceLocation = 'https://github.com/PhysShell/git-aliases-extra'
ReleaseNotes = 'See CHANGELOG.md for release notes.'
RequireLicenseAcceptance = $false
}
}
}