Skip to content

Commit 952108d

Browse files
Merge pull request #138 from StartAutomating/edits-Wed,15Mar202303-20-53GMT
Posting with GitPub [skip ci]
2 parents 56da311 + 7ea87bf commit 952108d

File tree

3 files changed

+248
-0
lines changed

3 files changed

+248
-0
lines changed

docs/2023-03-09.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2023/03/09/
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 03 09" %}
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-03.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2023/03/
3+
---
4+
{% assign currentYearMonth = "2023 03" %}
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 %}
Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
---
2+
3+
title: ugit 0.3.7
4+
sourceURL: https://github.com/StartAutomating/ugit/releases/tag/v0.3.7
5+
tag: release
6+
---
7+
## 0.3.7:
8+
9+
* git remote
10+
* Now supporting git remote! (Fixes [#129](https://github.com/StartAutomating/ugit/issues/129))
11+
12+
~~~PowerShell
13+
git remote | git remote show
14+
~~~
15+
16+
Also, some improvements to the GitHub Action:
17+
18+
* Icon Update (Fixes [#132](https://github.com/StartAutomating/ugit/issues/132))
19+
* No longer using set-output (Fixes [#131](https://github.com/StartAutomating/ugit/issues/131))
20+
* Adding -InstallModule to Action (Fixes [#132](https://github.com/StartAutomating/ugit/issues/132))
21+
22+
---
23+
24+
## 0.3.6:
25+
26+
* git log
27+
* Supporting --stat (Fixes [#123](https://github.com/StartAutomating/ugit/issues/123))
28+
* Supporting --shortstat (Fixes [#102](https://github.com/StartAutomating/ugit/issues/102))
29+
* Adding .GitOutputLines (Fixes [#122](https://github.com/StartAutomating/ugit/issues/122))
30+
* git diff
31+
* Fixing subdirectory issue (Fixes [#121](https://github.com/StartAutomating/ugit/issues/121))
32+
33+
---
34+
35+
## 0.3.5:
36+
37+
* Use-Git: Fixing pipeline behavior for non-file input (Fixes [#119](https://github.com/StartAutomating/ugit/issues/119))
38+
* Git.log: Attaching .GitCommand, not .GitArgument (Fixes [#118](https://github.com/StartAutomating/ugit/issues/118))
39+
* Git.mv: Reducing liklihood of errors in directory moves (Fixes [#117](https://github.com/StartAutomating/ugit/issues/117))
40+
41+
---
42+
43+
## 0.3.4:
44+
45+
* Improving pipeling behavior (Fixes [#110](https://github.com/StartAutomating/ugit/issues/110))
46+
* Adding tests for pipelining
47+
48+
---
49+
50+
## 0.3.3:
51+
52+
* New Extensions:
53+
* git grep (Fixes [#101](https://github.com/StartAutomating/ugit/issues/101))
54+
* --name-only support (Fixes [#103](https://github.com/StartAutomating/ugit/issues/103))
55+
* -WhatIf now returns a [ScriptBlock] (Fixes [#90](https://github.com/StartAutomating/ugit/issues/90))
56+
* Git.FileOutput: Test-Path before Get-Item (Fixes [#106](https://github.com/StartAutomating/ugit/issues/106))
57+
58+
---
59+
60+
## 0.3.2:
61+
62+
* git diff now includes .File and .GitRoot (Fixes [#93](https://github.com/StartAutomating/ugit/issues/93))
63+
* git pull no longer includes 'files changed' when no files change (Fixes [#92](https://github.com/StartAutomating/ugit/issues/92))
64+
65+
---
66+
67+
## 0.3.1:
68+
69+
* git help --all now returns as objects (Fixes [#88](https://github.com/StartAutomating/ugit/issues/88))
70+
* (git log .\filename).Diff() now only diffs the selected files (Fixes [#87](https://github.com/StartAutomating/ugit/issues/87))
71+
* git -C is permitted in any direectory (Fixes [#85](https://github.com/StartAutomating/ugit/issues/85))
72+
73+
---
74+
75+
## 0.3:
76+
77+
* 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!)
78+
79+
--
80+
81+
## 0.2.9:
82+
* Adding support for git init (Fixes [#75](https://github.com/StartAutomating/ugit/issues/75))
83+
84+
---
85+
86+
## 0.2.8:
87+
* Adding support for git rm (Fixes [#73](https://github.com/StartAutomating/ugit/issues/73))
88+
89+
---
90+
91+
## 0.2.7:
92+
* Adding support for git mv ([#70](https://github.com/StartAutomating/ugit/issues/70), thanks @ninmonkey !)
93+
94+
---
95+
96+
## 0.2.6:
97+
* Fixing git diff for binary files ([#47](https://github.com/StartAutomating/ugit/issues/47))
98+
99+
---
100+
101+
## 0.2.5:
102+
* Improving .Merged support for git log ([#68](https://github.com/StartAutomating/ugit/issues/68))
103+
* git log now also returns:
104+
* [int] .PullRequestNumber (the pull request number)
105+
* .Source (the source branch of a merge)
106+
* .Destination (the destination branch of a merge)
107+
108+
---
109+
110+
## 0.2.4:
111+
* Adding support for git stash ([#65](https://github.com/StartAutomating/ugit/issues/65))
112+
* Allowing git diff extension to display git stash show --patch ([#66](https://github.com/StartAutomating/ugit/issues/66))
113+
114+
---
115+
116+
## 0.2.3:
117+
* Adding types for git.reference.log ([#61](https://github.com/StartAutomating/ugit/issues/61) [#62](https://github.com/StartAutomating/ugit/issues/62))
118+
119+
---
120+
121+
## 0.2.2:
122+
* Outputting hints as warnings ([#56](https://github.com/StartAutomating/ugit/issues/56))
123+
* Improved support for git pull ([#57](https://github.com/StartAutomating/ugit/issues/57))
124+
* Auto-building depedencies ([#58](https://github.com/StartAutomating/ugit/issues/58))
125+
* Consolidating CI/CD ([#59](https://github.com/StartAutomating/ugit/issues/59))
126+
127+
---
128+
129+
## 0.2.1:
130+
* Adding support for git shortlog ([#48](https://github.com/StartAutomating/ugit/issues/48))
131+
* Adding .GitRoot to git reflog ([#53](https://github.com/StartAutomating/ugit/issues/53))
132+
* Extension documentation cleanup ([#54](https://github.com/StartAutomating/ugit/issues/54))
133+
134+
---
135+
136+
## 0.2.0:
137+
* Adding support for git reflog ([#51](https://github.com/StartAutomating/ugit/issues/51))
138+
139+
---
140+
141+
## 0.1.9.1:
142+
* Fixing git status duplicate message ([#49](https://github.com/StartAutomating/ugit/issues/49))
143+
144+
---
145+
146+
## 0.1.9:
147+
* Support for eventing ([#42](https://github.com/StartAutomating/ugit/issues/42))
148+
* Autogeneration of docs ([#43](https://github.com/StartAutomating/ugit/issues/43))
149+
* Autogeneration of formatting ([#44](https://github.com/StartAutomating/ugit/issues/44))
150+
* Fixing git status formatting ([#45](https://github.com/StartAutomating/ugit/issues/45))
151+
152+
---
153+
154+
## 0.1.8:
155+
* Adding Support for git checkout ([#38](https://github.com/StartAutomating/ugit/issues/38))
156+
* Use-Git: Avoiding unwanted confirmation ( Fixing [#39](https://github.com/StartAutomating/ugit/issues/39) )
157+
158+
---
159+
160+
## 0.1.7:
161+
* Use-Git: -Verbose no longer infers --verbose ([#10](https://github.com/StartAutomating/ugit/issues/10))
162+
* Out-Git: Support for extension caching ([#35](https://github.com/StartAutomating/ugit/issues/35))
163+
* Out-Git: Using -ErrorAction Ignore when -Verbose is not passed ([#36](https://github.com/StartAutomating/ugit/issues/36))
164+
* 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))
165+
166+
---
167+
168+
## 0.1.6
169+
* Adding support / formatting for git pull ([#26](https://github.com/StartAutomating/ugit/issues/26))
170+
* Out-Git: Extension Improvements ([#33](https://github.com/StartAutomating/ugit/issues/33))
171+
172+
---
173+
174+
## 0.1.5
175+
* Adding git.log .Checkout() and Revert() ([#27](https://github.com/StartAutomating/ugit/issues/27), [#28](https://github.com/StartAutomating/ugit/issues/28))
176+
* Fixing formatting for git diff ([#25](https://github.com/StartAutomating/ugit/issues/25))
177+
* Out-Git: Adding History ([#30](https://github.com/StartAutomating/ugit/issues/30))
178+
* Use-Git: SupportsShouldProcess ([#29](https://github.com/StartAutomating/ugit/issues/29))
179+
180+
---
181+
182+
## 0.1.4
183+
* Adding git.log.reset() ([#20](https://github.com/StartAutomating/ugit/issues/20))
184+
* Adding git clone extension ([#17](https://github.com/StartAutomating/ugit/issues/17))
185+
* Use-Git: Running certain git commands when there is no repo (currently clone and init)
186+
* 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))
187+
* git branch extension: Adding example
188+
* Highlighting branch name (fixing [#19](https://github.com/StartAutomating/ugit/issues/19))
189+
190+
---
191+
192+
## 0.1.3
193+
* Updating git.log extension: Adding .Merged ([#16](https://github.com/StartAutomating/ugit/issues/16))
194+
* Updating git push extension: Support for first push ([#14](https://github.com/StartAutomating/ugit/issues/14))
195+
* Adding .output to automatic typenames (Fixing [#11](https://github.com/StartAutomating/ugit/issues/11))
196+
* Adding .ToString to git.branch and git.branch.detail ([#9](https://github.com/StartAutomating/ugit/issues/9))
197+
* Updating git branch extension: Fixing --delete behavior ([#13](https://github.com/StartAutomating/ugit/issues/13))
198+
* 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))
199+
200+
---
201+
202+
## 0.1.2
203+
* Support for git push ([#7](https://github.com/StartAutomating/ugit/issues/7))
204+
* Adding .Amend/.UpdateMessage to git.commit.info ([#6](https://github.com/StartAutomating/ugit/issues/6))
205+
206+
---
207+
208+
## 0.1.1
209+
* Support for git commit ([#4](https://github.com/StartAutomating/ugit/issues/4))
210+
211+
---
212+
213+
## 0.1
214+
* Initial Release of ugit
215+
216+
---

0 commit comments

Comments
 (0)