Skip to content

Commit

Permalink
Posting with GitPub [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
StartAutomating authored and StartAutomating committed Oct 9, 2023
1 parent 80a4d9c commit 32bb8ee
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/2023-10-05.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
permalink: /2023/10/05/
---
{% for post in site.posts %}
{% assign currentdate = post.date | date: "%Y %m %d" %}
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
{% if currentdate != "2023 10 05" %}
{% continue %}
{% endif %}
{% if currentdate != date %}
## {{friendlydate}}
{% assign date = currentdate %}
{% endif %}
* [ {{ post.title }} ]( {{ post.url }} )
{% endfor %}
17 changes: 17 additions & 0 deletions docs/2023-10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
permalink: /2023/10/
---
{% assign currentYearMonth = "2023 10" %}
{% 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 %}
24 changes: 24 additions & 0 deletions docs/_posts/2023-10-05-ugit-0.4.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---

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

* New Git Command Support:
* git submodule status ([#183](https://github.com/StartAutomating/ugit/issues/183))
* New Git ScriptMethods:
* git.branch.diff ([#187](https://github.com/StartAutomating/ugit/issues/187))
* git.branch.rename ([#86](https://github.com/StartAutomating/ugit/issues/86))
* Easier Input:
* git commit -CommitDate ([#184](https://github.com/StartAutomating/ugit/issues/184))
* git log -CurrentBranch (fixing forks, [#179](https://github.com/StartAutomating/ugit/issues/179))
* Announcing Releases with [PSA](https://github.com/StartAutomating/PSA)

---

Additional Changes in [Changelog](/CHANGELOG.md)
Like It? Start It. Love It? Support It.
https://github.com/StartAutomating/ugit

0 comments on commit 32bb8ee

Please sign in to comment.