Skip to content

Commit 525290d

Browse files
Merge pull request #176 from StartAutomating/edits-Sun,14May202300-49-54GMT
Posting with GitPub [skip ci]
2 parents 4ac0a77 + a48ed88 commit 525290d

File tree

3 files changed

+294
-0
lines changed

3 files changed

+294
-0
lines changed

docs/2023-05-14.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2023/05/14/
3+
---
4+
{% for post in site.posts %}
5+
{% assign currentdate = post.date | date: "%Y %m %d" %}
6+
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
7+
{% if currentdate != "2023 05 14" %}
8+
{% continue %}
9+
{% endif %}
10+
{% if currentdate != date %}
11+
## {{friendlydate}}
12+
{% assign date = currentdate %}
13+
{% endif %}
14+
* [ {{ post.title }} ]( {{ post.url }} )
15+
{% endfor %}

docs/2023-05.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2023/05/
3+
---
4+
{% assign currentYearMonth = "2023 05" %}
5+
{% for post in site.posts %}
6+
{% assign postYear = post.date | date: "%Y" %}
7+
{% assign postYearMonth = post.date | date: "%B [%Y](..)" %}
8+
{% assign postYM = post.date | date: "%Y %m" %}
9+
{% if postYM != currentYearMonth %}
10+
{% continue %}
11+
{% endif %}
12+
{% if hasDisplayedYearMonth != postYearMonth %}
13+
## {{postYearMonth}}
14+
{% endif %}
15+
{% assign hasDisplayedYearMonth = postYearMonth %}
16+
* [ {{ post.title }} ]( {{ post.url }} )
17+
{% endfor %}

docs/_posts/2023-05-14-ugit-0.4.md

Lines changed: 262 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,262 @@
1+
---
2+
3+
title: ugit 0.4
4+
sourceURL: https://github.com/StartAutomating/ugit/releases/tag/v0.4
5+
tag: release
6+
---
7+
## 0.4:
8+
9+
* Adding Sponsorship! ([#174](https://github.com/StartAutomating/ugit/issues/174))
10+
* RealGit / GitReal will opt-out of ugit ([#173](https://github.com/StartAutomating/ugit/issues/173))
11+
* Added git.commit.info.psuh ([#111](https://github.com/StartAutomating/ugit/issues/111))
12+
* Fixing directory piping ([#172](https://github.com/StartAutomating/ugit/issues/172))
13+
* Git Clone allows absolute paths ([#169](https://github.com/StartAutomating/ugit/issues/169), thanks @corbob)
14+
* Fixing Git Log -Statistics ([#171](https://github.com/StartAutomating/ugit/issues/171))
15+
* Not Mapping Partial Dynamic Parameters ([#168](https://github.com/StartAutomating/ugit/issues/168))
16+
17+
--
18+
19+
## 0.3.9:
20+
21+
* Adding ugit demo (Fixes [#163](https://github.com/StartAutomating/ugit/issues/163))
22+
* Use-Git: Improving -Confirm (Fixes [#165](https://github.com/StartAutomating/ugit/issues/165)) and -WhatIf (Fixes [#162](https://github.com/StartAutomating/ugit/issues/162))
23+
* git.log.input
24+
* Adding -NumberOfCommits ([#161](https://github.com/StartAutomating/ugit/issues/161)/[#156](https://github.com/StartAutomating/ugit/issues/156))
25+
* Adding -SearchPattern (Fixes [#158](https://github.com/StartAutomating/ugit/issues/158))
26+
* Adding -SearchString (Fixes [#157](https://github.com/StartAutomating/ugit/issues/157))
27+
* Adding -Statistics (Fixes [#155](https://github.com/StartAutomating/ugit/issues/155))
28+
* Adding git.branch IsTracked (Fixes [#160](https://github.com/StartAutomating/ugit/issues/160))
29+
* Extending FileInfo for better git results (Fixes [#153](https://github.com/StartAutomating/ugit/issues/153)) (thanks @ninmonkey)
30+
* Adding ugit.extension formatting (Fixes [#164](https://github.com/StartAutomating/ugit/issues/164))
31+
* git log formatting - right-aligning CommitMessage (Fixes [#152](https://github.com/StartAutomating/ugit/issues/152)) (thanks @ninmonkey)
32+
* git log .diff FileChange fix (Fixes [#151](https://github.com/StartAutomating/ugit/issues/151))
33+
* Git Diff ChangeSet Formatting Fix (Fixes [#150](https://github.com/StartAutomating/ugit/issues/150))
34+
* Updating workflow (Using GitLogger)
35+
36+
37+
## 0.3.8:
38+
39+
* Use-Git can now be extended ([#140](https://github.com/StartAutomating/ugit/issues/140), [#97](https://github.com/StartAutomating/ugit/issues/97)), letting you add PowerShell parameters to any git command
40+
* Initial input extensions
41+
* git.clone.input ([#141](https://github.com/StartAutomating/ugit/issues/141)) (--progress is inferred so Write-Progress happens automagically)
42+
* git.log.input ([#142](https://github.com/StartAutomating/ugit/issues/142)) (Added -Before/-After/-Author/-CurrentBranch)
43+
* git.commit.input ([#144](https://github.com/StartAutomating/ugit/issues/144)) (Added -Message/-Body/-Title/-Trailer)
44+
* Other Improvements:
45+
* git log will not process --pretty/--format (Fixes [#143](https://github.com/StartAutomating/ugit/issues/143))
46+
* git log now supports .Trailers (Fixes [#112](https://github.com/StartAutomating/ugit/issues/112))
47+
* git remote formatting improved (Fixes [#145](https://github.com/StartAutomating/ugit/issues/145))
48+
* git remote now works for multiple remotes (Fixes [#136](https://github.com/StartAutomating/ugit/issues/136))
49+
* Updated logo ([#139](https://github.com/StartAutomating/ugit/issues/139))
50+
51+
---
52+
53+
## 0.3.7:
54+
55+
* git remote
56+
* Now supporting git remote! (Fixes [#129](https://github.com/StartAutomating/ugit/issues/129))
57+
58+
~~~PowerShell
59+
git remote | git remote show
60+
~~~
61+
62+
Also, some improvements to the GitHub Action:
63+
64+
* Icon Update (Fixes [#132](https://github.com/StartAutomating/ugit/issues/132))
65+
* No longer using set-output (Fixes [#131](https://github.com/StartAutomating/ugit/issues/131))
66+
* Adding -InstallModule to Action (Fixes [#132](https://github.com/StartAutomating/ugit/issues/132))
67+
68+
---
69+
70+
## 0.3.6:
71+
72+
* git log
73+
* Supporting --stat (Fixes [#123](https://github.com/StartAutomating/ugit/issues/123))
74+
* Supporting --shortstat (Fixes [#102](https://github.com/StartAutomating/ugit/issues/102))
75+
* Adding .GitOutputLines (Fixes [#122](https://github.com/StartAutomating/ugit/issues/122))
76+
* git diff
77+
* Fixing subdirectory issue (Fixes [#121](https://github.com/StartAutomating/ugit/issues/121))
78+
79+
---
80+
81+
## 0.3.5:
82+
83+
* Use-Git: Fixing pipeline behavior for non-file input (Fixes [#119](https://github.com/StartAutomating/ugit/issues/119))
84+
* Git.log: Attaching .GitCommand, not .GitArgument (Fixes [#118](https://github.com/StartAutomating/ugit/issues/118))
85+
* Git.mv: Reducing liklihood of errors in directory moves (Fixes [#117](https://github.com/StartAutomating/ugit/issues/117))
86+
87+
---
88+
89+
## 0.3.4:
90+
91+
* Improving pipeling behavior (Fixes [#110](https://github.com/StartAutomating/ugit/issues/110))
92+
* Adding tests for pipelining
93+
94+
---
95+
96+
## 0.3.3:
97+
98+
* New Extensions:
99+
* git grep (Fixes [#101](https://github.com/StartAutomating/ugit/issues/101))
100+
* --name-only support (Fixes [#103](https://github.com/StartAutomating/ugit/issues/103))
101+
* -WhatIf now returns a [ScriptBlock] (Fixes [#90](https://github.com/StartAutomating/ugit/issues/90))
102+
* Git.FileOutput: Test-Path before Get-Item (Fixes [#106](https://github.com/StartAutomating/ugit/issues/106))
103+
104+
---
105+
106+
## 0.3.2:
107+
108+
* git diff now includes .File and .GitRoot (Fixes [#93](https://github.com/StartAutomating/ugit/issues/93))
109+
* git pull no longer includes 'files changed' when no files change (Fixes [#92](https://github.com/StartAutomating/ugit/issues/92))
110+
111+
---
112+
113+
## 0.3.1:
114+
115+
* git help --all now returns as objects (Fixes [#88](https://github.com/StartAutomating/ugit/issues/88))
116+
* (git log .\filename).Diff() now only diffs the selected files (Fixes [#87](https://github.com/StartAutomating/ugit/issues/87))
117+
* git -C is permitted in any direectory (Fixes [#85](https://github.com/StartAutomating/ugit/issues/85))
118+
119+
---
120+
121+
## 0.3:
122+
123+
* Adding git version and git help to list of commands that do not require a repo (Fixes [#79](https://github.com/StartAutomating/ugit/issues/79)) (Thanks @charltonstanley!)
124+
125+
--
126+
127+
## 0.2.9:
128+
* Adding support for git init (Fixes [#75](https://github.com/StartAutomating/ugit/issues/75))
129+
130+
---
131+
132+
## 0.2.8:
133+
* Adding support for git rm (Fixes [#73](https://github.com/StartAutomating/ugit/issues/73))
134+
135+
---
136+
137+
## 0.2.7:
138+
* Adding support for git mv ([#70](https://github.com/StartAutomating/ugit/issues/70), thanks @ninmonkey !)
139+
140+
---
141+
142+
## 0.2.6:
143+
* Fixing git diff for binary files ([#47](https://github.com/StartAutomating/ugit/issues/47))
144+
145+
---
146+
147+
## 0.2.5:
148+
* Improving .Merged support for git log ([#68](https://github.com/StartAutomating/ugit/issues/68))
149+
* git log now also returns:
150+
* [int] .PullRequestNumber (the pull request number)
151+
* .Source (the source branch of a merge)
152+
* .Destination (the destination branch of a merge)
153+
154+
---
155+
156+
## 0.2.4:
157+
* Adding support for git stash ([#65](https://github.com/StartAutomating/ugit/issues/65))
158+
* Allowing git diff extension to display git stash show --patch ([#66](https://github.com/StartAutomating/ugit/issues/66))
159+
160+
---
161+
162+
## 0.2.3:
163+
* Adding types for git.reference.log ([#61](https://github.com/StartAutomating/ugit/issues/61) [#62](https://github.com/StartAutomating/ugit/issues/62))
164+
165+
---
166+
167+
## 0.2.2:
168+
* Outputting hints as warnings ([#56](https://github.com/StartAutomating/ugit/issues/56))
169+
* Improved support for git pull ([#57](https://github.com/StartAutomating/ugit/issues/57))
170+
* Auto-building depedencies ([#58](https://github.com/StartAutomating/ugit/issues/58))
171+
* Consolidating CI/CD ([#59](https://github.com/StartAutomating/ugit/issues/59))
172+
173+
---
174+
175+
## 0.2.1:
176+
* Adding support for git shortlog ([#48](https://github.com/StartAutomating/ugit/issues/48))
177+
* Adding .GitRoot to git reflog ([#53](https://github.com/StartAutomating/ugit/issues/53))
178+
* Extension documentation cleanup ([#54](https://github.com/StartAutomating/ugit/issues/54))
179+
180+
---
181+
182+
## 0.2.0:
183+
* Adding support for git reflog ([#51](https://github.com/StartAutomating/ugit/issues/51))
184+
185+
---
186+
187+
## 0.1.9.1:
188+
* Fixing git status duplicate message ([#49](https://github.com/StartAutomating/ugit/issues/49))
189+
190+
---
191+
192+
## 0.1.9:
193+
* Support for eventing ([#42](https://github.com/StartAutomating/ugit/issues/42))
194+
* Autogeneration of docs ([#43](https://github.com/StartAutomating/ugit/issues/43))
195+
* Autogeneration of formatting ([#44](https://github.com/StartAutomating/ugit/issues/44))
196+
* Fixing git status formatting ([#45](https://github.com/StartAutomating/ugit/issues/45))
197+
198+
---
199+
200+
## 0.1.8:
201+
* Adding Support for git checkout ([#38](https://github.com/StartAutomating/ugit/issues/38))
202+
* Use-Git: Avoiding unwanted confirmation ( Fixing [#39](https://github.com/StartAutomating/ugit/issues/39) )
203+
204+
---
205+
206+
## 0.1.7:
207+
* Use-Git: -Verbose no longer infers --verbose ([#10](https://github.com/StartAutomating/ugit/issues/10))
208+
* Out-Git: Support for extension caching ([#35](https://github.com/StartAutomating/ugit/issues/35))
209+
* Out-Git: Using -ErrorAction Ignore when -Verbose is not passed ([#36](https://github.com/StartAutomating/ugit/issues/36))
210+
* Get-UGitExtension: Updating Piecemeal Version [0.2.1]. (Re [#32](https://github.com/StartAutomating/ugit/issues/32) [#36](https://github.com/StartAutomating/ugit/issues/36))
211+
212+
---
213+
214+
## 0.1.6
215+
* Adding support / formatting for git pull ([#26](https://github.com/StartAutomating/ugit/issues/26))
216+
* Out-Git: Extension Improvements ([#33](https://github.com/StartAutomating/ugit/issues/33))
217+
218+
---
219+
220+
## 0.1.5
221+
* Adding git.log .Checkout() and Revert() ([#27](https://github.com/StartAutomating/ugit/issues/27), [#28](https://github.com/StartAutomating/ugit/issues/28))
222+
* Fixing formatting for git diff ([#25](https://github.com/StartAutomating/ugit/issues/25))
223+
* Out-Git: Adding History ([#30](https://github.com/StartAutomating/ugit/issues/30))
224+
* Use-Git: SupportsShouldProcess ([#29](https://github.com/StartAutomating/ugit/issues/29))
225+
226+
---
227+
228+
## 0.1.4
229+
* Adding git.log.reset() ([#20](https://github.com/StartAutomating/ugit/issues/20))
230+
* Adding git clone extension ([#17](https://github.com/StartAutomating/ugit/issues/17))
231+
* Use-Git: Running certain git commands when there is no repo (currently clone and init)
232+
* Use-Git: Support for progress bars ([#18](https://github.com/StartAutomating/ugit/issues/18)). Warning when repo not found ([#21](https://github.com/StartAutomating/ugit/issues/21))
233+
* git branch extension: Adding example
234+
* Highlighting branch name (fixing [#19](https://github.com/StartAutomating/ugit/issues/19))
235+
236+
---
237+
238+
## 0.1.3
239+
* Updating git.log extension: Adding .Merged ([#16](https://github.com/StartAutomating/ugit/issues/16))
240+
* Updating git push extension: Support for first push ([#14](https://github.com/StartAutomating/ugit/issues/14))
241+
* Adding .output to automatic typenames (Fixing [#11](https://github.com/StartAutomating/ugit/issues/11))
242+
* Adding .ToString to git.branch and git.branch.detail ([#9](https://github.com/StartAutomating/ugit/issues/9))
243+
* Updating git branch extension: Fixing --delete behavior ([#13](https://github.com/StartAutomating/ugit/issues/13))
244+
* Use-Git: Support for -d/-D/-v/-V ([#12](https://github.com/StartAutomating/ugit/issues/12)). -Verbose implies --verbose ([#10](https://github.com/StartAutomating/ugit/issues/10))
245+
246+
---
247+
248+
## 0.1.2
249+
* Support for git push ([#7](https://github.com/StartAutomating/ugit/issues/7))
250+
* Adding .Amend/.UpdateMessage to git.commit.info ([#6](https://github.com/StartAutomating/ugit/issues/6))
251+
252+
---
253+
254+
## 0.1.1
255+
* Support for git commit ([#4](https://github.com/StartAutomating/ugit/issues/4))
256+
257+
---
258+
259+
## 0.1
260+
* Initial Release of ugit
261+
262+
---

0 commit comments

Comments
 (0)