forked from StartAutomating/ugit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathugit.psd1
44 lines (39 loc) · 1.58 KB
/
ugit.psd1
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
@{
ModuleVersion = '0.4.2'
RootModule = 'ugit.psm1'
FormatsToProcess = 'ugit.format.ps1xml'
TypesToProcess = 'ugit.types.ps1xml'
Guid = '32323806-1d4a-485b-a64b-c502b0468847'
Author = 'James Brundage'
Copyright = '2022-2023 Start-Automating'
CompanyName = 'Start-Automating'
Description = 'ugit: Updated Git.
A powerful PowerShell wrapper for git that lets you extend git, automate multiple repos, and use the object pipeline.'
PrivateData = @{
PSData = @{
Tags = 'PowerShell', 'git'
ProjectURI = 'https://github.com/StartAutomating/ugit'
LicenseURI = 'https://github.com/StartAutomating/ugit/blob/main/LICENSE'
BuildModule = @('EZOut', 'Piecemeal', 'PipeScript', 'PSSVG')
ReleaseNotes = @'
## 0.4.2:
* git blame support (#192, #193, #199, #201)
* Use-Git will write to Verbose, not warning, when a directory is not a repository (#198, #204)
* ugit PSA improvements (#189, #205, #206, #207)
---
Additional Changes in [Changelog](/CHANGELOG.md)
Like It? Start It. Love It? Support It.
https://github.com/StartAutomating/ugit
'@
Taglines = @(
"I've got to admit it's gitting better, gitting better all the time:"
"Somehow, someway, I keep coming up with funky git nearly every single day:"
"#git in the #PowerShell object pipeline!"
"Get your git together!"
"Put this git in your pipe and smoke it!"
"I promise you, git gets better"
"Git ahead of the game!"
)
}
}
}