Skip to content

Commit 11ca250

Browse files
Merge pull request #190 from StartAutomating/edits-Mon,09Oct202305-36-49GMT
Posting with GitPub [skip ci]
2 parents 80a4d9c + 32bb8ee commit 11ca250

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

docs/2023-10-05.md

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2023/10/
3+
---
4+
{% assign currentYearMonth = "2023 10" %}
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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
3+
title: ugit 0.4.1
4+
sourceURL: https://github.com/StartAutomating/ugit/releases/tag/v0.4.1
5+
tag: release
6+
---
7+
## 0.4.1:
8+
9+
* New Git Command Support:
10+
* git submodule status ([#183](https://github.com/StartAutomating/ugit/issues/183))
11+
* New Git ScriptMethods:
12+
* git.branch.diff ([#187](https://github.com/StartAutomating/ugit/issues/187))
13+
* git.branch.rename ([#86](https://github.com/StartAutomating/ugit/issues/86))
14+
* Easier Input:
15+
* git commit -CommitDate ([#184](https://github.com/StartAutomating/ugit/issues/184))
16+
* git log -CurrentBranch (fixing forks, [#179](https://github.com/StartAutomating/ugit/issues/179))
17+
* Announcing Releases with [PSA](https://github.com/StartAutomating/PSA)
18+
19+
---
20+
21+
Additional Changes in [Changelog](/CHANGELOG.md)
22+
Like It? Start It. Love It? Support It.
23+
https://github.com/StartAutomating/ugit
24+

0 commit comments

Comments
 (0)