-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #273 from StartAutomating/edits-Tue,16Apr202418-51…
…-51GMT Posting with GitPub [skip ci]
- Loading branch information
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |