Skip to content

Commit

Permalink
Merge pull request #273 from StartAutomating/edits-Tue,16Apr202418-51…
Browse files Browse the repository at this point in the history
…-51GMT

Posting with GitPub [skip ci]
  • Loading branch information
StartAutomating authored Apr 16, 2024
2 parents 613110b + 4ea5e87 commit 927343c
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/2024-04-16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
permalink: /2024/04/16/
---
{% for post in site.posts %}
{% assign currentdate = post.date | date: "%Y %m %d" %}
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
{% if currentdate != "2024 04 16" %}
{% continue %}
{% endif %}
{% if currentdate != date %}
## {{friendlydate}}
{% assign date = currentdate %}
{% endif %}
* [ {{ post.title }} ]( {{ post.url }} )
{% endfor %}
17 changes: 17 additions & 0 deletions docs/2024-04.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
permalink: /2024/04/
---
{% assign currentYearMonth = "2024 04" %}
{% 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 %}
31 changes: 31 additions & 0 deletions docs/_posts/2024-04-16-ugit-0.4.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---

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

> Like It? [Star It](https://github.com/StartAutomating/ugit)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)
* 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))
* `docker run --interactive --tty ghcr.io/startautomating/ugit`
* `git checkout` improvements
* `git checkout -PullRequest [int]` ([#178](https://github.com/StartAutomating/ugit/issues/178))
* `git checkout -NewBranchName [string]` ([#266](https://github.com/StartAutomating/ugit/issues/266))
* `git checkout -ResetBranchName [string]` ([#267](https://github.com/StartAutomating/ugit/issues/267))
* `git checkout -Detach [switch]` ([#268](https://github.com/StartAutomating/ugit/issues/268))
* `git checkout -ResetPath [string]` ([#269](https://github.com/StartAutomating/ugit/issues/269))
* `git checkout -FromBranch [string]` ([#270](https://github.com/StartAutomating/ugit/issues/270))
* `git checkout -RevisionNumber/-ParentNumber [int]` ([#271](https://github.com/StartAutomating/ugit/issues/271))
* `git sparse-checkout` improvements
* `git sparse-checkout -FileFilter [string[]]` ( Fixes [#257](https://github.com/StartAutomating/ugit/issues/257) )
* `git sparse-checkout -DirectoryFilter [string[]]` ( Fixes [#258](https://github.com/StartAutomating/ugit/issues/258) )
* `git branch -Remote [switch]` ([#185](https://github.com/StartAutomating/ugit/issues/185))
* `git config --list` outputs as objects ([#265](https://github.com/StartAutomating/ugit/issues/265))
* `git --format json` outputs as objects ([#239](https://github.com/StartAutomating/ugit/issues/239))

---

Additional Changes in [Changelog](https://github.com/StartAutomating/ugit/blob/main/CHANGELOG.md)

0 comments on commit 927343c

Please sign in to comment.