Skip to content

Commit 927343c

Browse files
Merge pull request #273 from StartAutomating/edits-Tue,16Apr202418-51-51GMT
Posting with GitPub [skip ci]
2 parents 613110b + 4ea5e87 commit 927343c

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

docs/2024-04-16.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2024/04/16/
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 != "2024 04 16" %}
8+
{% continue %}
9+
{% endif %}
10+
{% if currentdate != date %}
11+
## {{friendlydate}}
12+
{% assign date = currentdate %}
13+
{% endif %}
14+
* [ {{ post.title }} ]( {{ post.url }} )
15+
{% endfor %}

docs/2024-04.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2024/04/
3+
---
4+
{% assign currentYearMonth = "2024 04" %}
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/2024-04-16-ugit-0.4.4.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
3+
title: ugit 0.4.4
4+
sourceURL: https://github.com/StartAutomating/ugit/releases/tag/v0.4.4
5+
tag: release
6+
---
7+
## ugit 0.4.4:
8+
9+
> Like It? [Star It](https://github.com/StartAutomating/ugit)
10+
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
11+
12+
* ugit a container! ([#262](https://github.com/StartAutomating/ugit/issues/262), [#263](https://github.com/StartAutomating/ugit/issues/263), [#264](https://github.com/StartAutomating/ugit/issues/264))
13+
* `docker run --interactive --tty ghcr.io/startautomating/ugit`
14+
* `git checkout` improvements
15+
* `git checkout -PullRequest [int]` ([#178](https://github.com/StartAutomating/ugit/issues/178))
16+
* `git checkout -NewBranchName [string]` ([#266](https://github.com/StartAutomating/ugit/issues/266))
17+
* `git checkout -ResetBranchName [string]` ([#267](https://github.com/StartAutomating/ugit/issues/267))
18+
* `git checkout -Detach [switch]` ([#268](https://github.com/StartAutomating/ugit/issues/268))
19+
* `git checkout -ResetPath [string]` ([#269](https://github.com/StartAutomating/ugit/issues/269))
20+
* `git checkout -FromBranch [string]` ([#270](https://github.com/StartAutomating/ugit/issues/270))
21+
* `git checkout -RevisionNumber/-ParentNumber [int]` ([#271](https://github.com/StartAutomating/ugit/issues/271))
22+
* `git sparse-checkout` improvements
23+
* `git sparse-checkout -FileFilter [string[]]` ( Fixes [#257](https://github.com/StartAutomating/ugit/issues/257) )
24+
* `git sparse-checkout -DirectoryFilter [string[]]` ( Fixes [#258](https://github.com/StartAutomating/ugit/issues/258) )
25+
* `git branch -Remote [switch]` ([#185](https://github.com/StartAutomating/ugit/issues/185))
26+
* `git config --list` outputs as objects ([#265](https://github.com/StartAutomating/ugit/issues/265))
27+
* `git --format json` outputs as objects ([#239](https://github.com/StartAutomating/ugit/issues/239))
28+
29+
---
30+
31+
Additional Changes in [Changelog](https://github.com/StartAutomating/ugit/blob/main/CHANGELOG.md)

0 commit comments

Comments
 (0)