Skip to content

Commit b9c3f2a

Browse files
Merge branch 'main' into CheckoutSupportAndFixes
2 parents d1200fb + 7e7832c commit b9c3f2a

File tree

6 files changed

+236
-124
lines changed

6 files changed

+236
-124
lines changed

Extensions/Git.Pull.UGit.Extension.ps1

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,19 @@
22
.SYNOPSIS
33
git pull extension
44
.DESCRIPTION
5-
5+
Returns git pull as objects.
66
.EXAMPLE
77
git pull
88
#>
99
[Management.Automation.Cmdlet("Out", "Git")]
10-
[ValidatePattern("^git (?>pull|fetch)")]
10+
[ValidatePattern("^git pull")]
1111
[OutputType('git.pull.fastforward', 'git.pull.nochange')]
1212
param(
1313
[Parameter(ValueFromPipeline)]
1414
[string]
1515
$GitOut
1616
)
1717

18-
<#
19-
From https://github.com/StartAutomating/RoughDraft
20-
432138e..9df4f8d main -> origin/main
21-
* [new tag] v0.3.1 -> v0.3.1
22-
Updating 432138e..9df4f8d
23-
Fast-forward
24-
CHANGELOG.md | 13 ++-
25-
Convert-Media.ps1 | 37 +++++++--
26-
Edit-Media.ps1 | 95 ++++++++++++++-------
27-
Extension/DrawSubtitle.RoughDraft.Extension.ps1 | 78 ++++++++++++++++++
28-
Extension/Resize.RoughDraft.Extension.ps1 | 11 ++-
29-
Extension/Subtitler.RoughDraft.Extension.ps1 | 105 ++++++++++++++++++++++++
30-
RoughDraft.psd1 | 13 ++-
31-
Show-Media.ps1 | 2 +-
32-
8 files changed, 309 insertions(+), 45 deletions(-)
33-
create mode 100644 Extension/DrawSubtitle.RoughDraft.Extension.ps1
34-
create mode 100644 Extension/Subtitler.RoughDraft.Extension.ps1
35-
#>
36-
3718
begin {
3819
$pullLines = @()
3920
}

0 commit comments

Comments
 (0)