aboutsummaryrefslogtreecommitdiff
path: root/_tils
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md2
-rw-r--r--_tils/2020-11-30-storing-ci-data-on-git-notes.md8
2 files changed, 5 insertions, 5 deletions
diff --git a/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md b/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md
index 7bf3452..5b4e445 100644
--- a/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md
+++ b/_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md
@@ -45,7 +45,7 @@ The following changes since commit 302c9f2f035c0360acd4e13142428c100a10d43f:
are available in the Git repository at:
- https://euandreh.xyz/euandre.org.git/
+ https://euandre.org/git/euandre.org/
for you to fetch changes up to 524c646cdac4153e54f2163e280176adbc4873fa:
diff --git a/_tils/2020-11-30-storing-ci-data-on-git-notes.md b/_tils/2020-11-30-storing-ci-data-on-git-notes.md
index f37419f..f8dd063 100644
--- a/_tils/2020-11-30-storing-ci-data-on-git-notes.md
+++ b/_tils/2020-11-30-storing-ci-data-on-git-notes.md
@@ -103,19 +103,19 @@ index d1830ca..a4ccde7 100644
```
Other tools such as [cgit][cgit] will also show notes on the web interface:
-<https://euandreh.xyz/servers.git/commit?id=87c57133abd8be5d7cc46afbf107f59b26066575>.
+<https://euandre.org/git/servers/commit?id=87c57133abd8be5d7cc46afbf107f59b26066575>.
You can go even further: since cgit can serve raw blob directly, you can even
serve such artifacts (log files, release artifacts, binaries) from cgit itself:
```shell
$ SHA="$(git notes --ref=refs/notes/ci-logs list 87c57133abd8be5d7cc46afbf107f59b26066575)"
-$ echo "https://euandreh.xyz/servers.git/blob?id=$SHA"
-https://euandreh.xyz/servers.git/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c
+$ echo "https://euandre.org/git/servers/blob?id=$SHA"
+https://euandre.org/git/servers/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c
```
And like that you'll have cgit serving the artifacts for you:
-<https://euandreh.xyz/servers.git/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c>.
+<https://euandre.org/git/servers/blob?id=1707a97bae24e3864fe7943f8dda6d01c294fb5c>.
[previous-article]: {% link _tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md %}
[git-notes]: https://git-scm.com/docs/git-notes