Skip to content

Commit

Permalink
Merge pull request #138 from StartAutomating/edits-Wed,15Mar202303-20…
Browse files Browse the repository at this point in the history
…-53GMT

Posting with GitPub [skip ci]
  • Loading branch information
StartAutomating authored Mar 26, 2023
2 parents 56da311 + 7ea87bf commit 952108d
Show file tree
Hide file tree
Showing 3 changed files with 248 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/2023-03-09.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
permalink: /2023/03/09/
---
{% for post in site.posts %}
{% assign currentdate = post.date | date: "%Y %m %d" %}
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
{% if currentdate != "2023 03 09" %}
{% continue %}
{% endif %}
{% if currentdate != date %}
## {{friendlydate}}
{% assign date = currentdate %}
{% endif %}
* [ {{ post.title }} ]( {{ post.url }} )
{% endfor %}
17 changes: 17 additions & 0 deletions docs/2023-03.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
permalink: /2023/03/
---
{% assign currentYearMonth = "2023 03" %}
{% for post in site.posts %}
{% assign postYear = post.date | date: "%Y" %}
{% assign postYearMonth = post.date | date: "%B [%Y](..)" %}
{% assign postYM = post.date | date: "%Y %m" %}
{% if postYM != currentYearMonth %}
{% continue %}
{% endif %}
{% if hasDisplayedYearMonth != postYearMonth %}
## {{postYearMonth}}
{% endif %}
{% assign hasDisplayedYearMonth = postYearMonth %}
* [ {{ post.title }} ]( {{ post.url }} )
{% endfor %}
216 changes: 216 additions & 0 deletions docs/_posts/2023-03-09-ugit-0.3.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,216 @@
---

title: ugit 0.3.7
sourceURL: https://github.com/StartAutomating/ugit/releases/tag/v0.3.7
tag: release
---
## 0.3.7:

* git remote
* Now supporting git remote! (Fixes [#129](https://github.com/StartAutomating/ugit/issues/129))

~~~PowerShell
git remote | git remote show
~~~

Also, some improvements to the GitHub Action:

* Icon Update (Fixes [#132](https://github.com/StartAutomating/ugit/issues/132))
* No longer using set-output (Fixes [#131](https://github.com/StartAutomating/ugit/issues/131))
* Adding -InstallModule to Action (Fixes [#132](https://github.com/StartAutomating/ugit/issues/132))

---

## 0.3.6:

* git log
* Supporting --stat (Fixes [#123](https://github.com/StartAutomating/ugit/issues/123))
* Supporting --shortstat (Fixes [#102](https://github.com/StartAutomating/ugit/issues/102))
* Adding .GitOutputLines (Fixes [#122](https://github.com/StartAutomating/ugit/issues/122))
* git diff
* Fixing subdirectory issue (Fixes [#121](https://github.com/StartAutomating/ugit/issues/121))

---

## 0.3.5:

* Use-Git: Fixing pipeline behavior for non-file input (Fixes [#119](https://github.com/StartAutomating/ugit/issues/119))
* Git.log: Attaching .GitCommand, not .GitArgument (Fixes [#118](https://github.com/StartAutomating/ugit/issues/118))
* Git.mv: Reducing liklihood of errors in directory moves (Fixes [#117](https://github.com/StartAutomating/ugit/issues/117))

---

## 0.3.4:

* Improving pipeling behavior (Fixes [#110](https://github.com/StartAutomating/ugit/issues/110))
* Adding tests for pipelining

---

## 0.3.3:

* New Extensions:
* git grep (Fixes [#101](https://github.com/StartAutomating/ugit/issues/101))
* --name-only support (Fixes [#103](https://github.com/StartAutomating/ugit/issues/103))
* -WhatIf now returns a [ScriptBlock] (Fixes [#90](https://github.com/StartAutomating/ugit/issues/90))
* Git.FileOutput: Test-Path before Get-Item (Fixes [#106](https://github.com/StartAutomating/ugit/issues/106))

---

## 0.3.2:

* git diff now includes .File and .GitRoot (Fixes [#93](https://github.com/StartAutomating/ugit/issues/93))
* git pull no longer includes 'files changed' when no files change (Fixes [#92](https://github.com/StartAutomating/ugit/issues/92))

---

## 0.3.1:

* git help --all now returns as objects (Fixes [#88](https://github.com/StartAutomating/ugit/issues/88))
* (git log .\filename).Diff() now only diffs the selected files (Fixes [#87](https://github.com/StartAutomating/ugit/issues/87))
* git -C is permitted in any direectory (Fixes [#85](https://github.com/StartAutomating/ugit/issues/85))

---

## 0.3:

* 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!)

--

## 0.2.9:
* Adding support for git init (Fixes [#75](https://github.com/StartAutomating/ugit/issues/75))

---

## 0.2.8:
* Adding support for git rm (Fixes [#73](https://github.com/StartAutomating/ugit/issues/73))

---

## 0.2.7:
* Adding support for git mv ([#70](https://github.com/StartAutomating/ugit/issues/70), thanks @ninmonkey !)

---

## 0.2.6:
* Fixing git diff for binary files ([#47](https://github.com/StartAutomating/ugit/issues/47))

---

## 0.2.5:
* Improving .Merged support for git log ([#68](https://github.com/StartAutomating/ugit/issues/68))
* git log now also returns:
* [int] .PullRequestNumber (the pull request number)
* .Source (the source branch of a merge)
* .Destination (the destination branch of a merge)

---

## 0.2.4:
* Adding support for git stash ([#65](https://github.com/StartAutomating/ugit/issues/65))
* Allowing git diff extension to display git stash show --patch ([#66](https://github.com/StartAutomating/ugit/issues/66))

---

## 0.2.3:
* Adding types for git.reference.log ([#61](https://github.com/StartAutomating/ugit/issues/61) [#62](https://github.com/StartAutomating/ugit/issues/62))

---

## 0.2.2:
* Outputting hints as warnings ([#56](https://github.com/StartAutomating/ugit/issues/56))
* Improved support for git pull ([#57](https://github.com/StartAutomating/ugit/issues/57))
* Auto-building depedencies ([#58](https://github.com/StartAutomating/ugit/issues/58))
* Consolidating CI/CD ([#59](https://github.com/StartAutomating/ugit/issues/59))

---

## 0.2.1:
* Adding support for git shortlog ([#48](https://github.com/StartAutomating/ugit/issues/48))
* Adding .GitRoot to git reflog ([#53](https://github.com/StartAutomating/ugit/issues/53))
* Extension documentation cleanup ([#54](https://github.com/StartAutomating/ugit/issues/54))

---

## 0.2.0:
* Adding support for git reflog ([#51](https://github.com/StartAutomating/ugit/issues/51))

---

## 0.1.9.1:
* Fixing git status duplicate message ([#49](https://github.com/StartAutomating/ugit/issues/49))

---

## 0.1.9:
* Support for eventing ([#42](https://github.com/StartAutomating/ugit/issues/42))
* Autogeneration of docs ([#43](https://github.com/StartAutomating/ugit/issues/43))
* Autogeneration of formatting ([#44](https://github.com/StartAutomating/ugit/issues/44))
* Fixing git status formatting ([#45](https://github.com/StartAutomating/ugit/issues/45))

---

## 0.1.8:
* Adding Support for git checkout ([#38](https://github.com/StartAutomating/ugit/issues/38))
* Use-Git: Avoiding unwanted confirmation ( Fixing [#39](https://github.com/StartAutomating/ugit/issues/39) )

---

## 0.1.7:
* Use-Git: -Verbose no longer infers --verbose ([#10](https://github.com/StartAutomating/ugit/issues/10))
* Out-Git: Support for extension caching ([#35](https://github.com/StartAutomating/ugit/issues/35))
* Out-Git: Using -ErrorAction Ignore when -Verbose is not passed ([#36](https://github.com/StartAutomating/ugit/issues/36))
* 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))

---

## 0.1.6
* Adding support / formatting for git pull ([#26](https://github.com/StartAutomating/ugit/issues/26))
* Out-Git: Extension Improvements ([#33](https://github.com/StartAutomating/ugit/issues/33))

---

## 0.1.5
* Adding git.log .Checkout() and Revert() ([#27](https://github.com/StartAutomating/ugit/issues/27), [#28](https://github.com/StartAutomating/ugit/issues/28))
* Fixing formatting for git diff ([#25](https://github.com/StartAutomating/ugit/issues/25))
* Out-Git: Adding History ([#30](https://github.com/StartAutomating/ugit/issues/30))
* Use-Git: SupportsShouldProcess ([#29](https://github.com/StartAutomating/ugit/issues/29))

---

## 0.1.4
* Adding git.log.reset() ([#20](https://github.com/StartAutomating/ugit/issues/20))
* Adding git clone extension ([#17](https://github.com/StartAutomating/ugit/issues/17))
* Use-Git: Running certain git commands when there is no repo (currently clone and init)
* 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))
* git branch extension: Adding example
* Highlighting branch name (fixing [#19](https://github.com/StartAutomating/ugit/issues/19))

---

## 0.1.3
* Updating git.log extension: Adding .Merged ([#16](https://github.com/StartAutomating/ugit/issues/16))
* Updating git push extension: Support for first push ([#14](https://github.com/StartAutomating/ugit/issues/14))
* Adding .output to automatic typenames (Fixing [#11](https://github.com/StartAutomating/ugit/issues/11))
* Adding .ToString to git.branch and git.branch.detail ([#9](https://github.com/StartAutomating/ugit/issues/9))
* Updating git branch extension: Fixing --delete behavior ([#13](https://github.com/StartAutomating/ugit/issues/13))
* 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))

---

## 0.1.2
* Support for git push ([#7](https://github.com/StartAutomating/ugit/issues/7))
* Adding .Amend/.UpdateMessage to git.commit.info ([#6](https://github.com/StartAutomating/ugit/issues/6))

---

## 0.1.1
* Support for git commit ([#4](https://github.com/StartAutomating/ugit/issues/4))

---

## 0.1
* Initial Release of ugit

---

0 comments on commit 952108d

Please sign in to comment.