aboutsummaryrefslogtreecommitdiff
path: root/_tils
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.md8
-rw-r--r--_tils/2020-08-16-search-in-git.md8
-rw-r--r--_tils/2020-08-28-grep-online-repositories.md8
-rw-r--r--_tils/2020-09-05-pull-requests-with-git-the-old-school-way.md8
-rw-r--r--_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md8
-rw-r--r--_tils/2020-11-08-find-broken-symlinks-with-find.md2
-rw-r--r--_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md2
-rw-r--r--_tils/2020-11-12-git-bisect-automation.md2
-rw-r--r--_tils/2020-11-12-useful-bash-variables.md2
-rw-r--r--_tils/2020-11-30-storing-ci-data-on-git-notes.md2
-rw-r--r--_tils/2020-12-15-awk-snippet-shellcheck-all-scripts-in-a-repository.md2
11 files changed, 52 insertions, 0 deletions
diff --git a/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.md b/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.md
index 3f47772..7965d29 100644
--- a/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.md
+++ b/_tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.md
@@ -1,9 +1,17 @@
---
+
title: Browse a git repository at a specific commit
+
date: 2020-08-14
+
layout: post
+
lang: en
+
ref: browse-a-git-repository-at-a-specific-commit
+
+eu_categories: git
+
---
I commonly use tools like `git log` together with `git show` when inspecting
diff --git a/_tils/2020-08-16-search-in-git.md b/_tils/2020-08-16-search-in-git.md
index 75b63d8..f3ae6f0 100644
--- a/_tils/2020-08-16-search-in-git.md
+++ b/_tils/2020-08-16-search-in-git.md
@@ -1,9 +1,17 @@
---
+
title: Search in git
+
date: 2020-08-16
+
layout: post
+
lang: en
+
ref: search-in-git
+
+eu_categories: git
+
---
Here's a useful trio to know about to help you search things in git:
diff --git a/_tils/2020-08-28-grep-online-repositories.md b/_tils/2020-08-28-grep-online-repositories.md
index 9b95eb2..8b3b63f 100644
--- a/_tils/2020-08-28-grep-online-repositories.md
+++ b/_tils/2020-08-28-grep-online-repositories.md
@@ -1,9 +1,17 @@
---
+
title: Grep online repositories
+
date: 2020-08-28
+
layout: post
+
lang: en
+
ref: grep-online-repositories
+
+eu_categories: git
+
---
I often find interesting source code repositories online that I want to grep for
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 6684631..4eff86f 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
@@ -1,9 +1,17 @@
---
+
title: Pull requests with Git, the old school way
+
date: 2020-09-05
+
layout: post
+
lang: en
+
ref: pull-requests-with-git-the-old-school-way
+
+eu_categories: git
+
---
It might be news to you, as it was to me, that "pull requests" that you can
create on a Git hosting provider's web UI[^pr-webui] like
diff --git a/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md b/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md
index 0a91b76..251abe9 100644
--- a/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md
+++ b/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md
@@ -1,9 +1,17 @@
---
+
title: Search changes to a filename pattern in Git history
+
date: 2020-10-11
+
layout: post
+
lang: en
+
ref: search-changes-to-a-filename-pattern-in-git-history
+
+eu_categories: git
+
---
This is [yet][git-til-1] [another][git-til-2] ["search in Git"][git-til-3] TIL
diff --git a/_tils/2020-11-08-find-broken-symlinks-with-find.md b/_tils/2020-11-08-find-broken-symlinks-with-find.md
index 7912df0..bc97fc6 100644
--- a/_tils/2020-11-08-find-broken-symlinks-with-find.md
+++ b/_tils/2020-11-08-find-broken-symlinks-with-find.md
@@ -10,6 +10,8 @@ lang: en
ref: find-broken-symlinks-with-find
+eu_categories: shell
+
---
The `find` command knows how to show broken symlinks:
diff --git a/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md b/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md
index d198845..7abda30 100644
--- a/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md
+++ b/_tils/2020-11-12-diy-bare-bones-ci-server-with-bash-and-nix.md
@@ -10,6 +10,8 @@ lang: en
ref: diy-bare-bones-ci-server-with-bash-and-nix
+eu_categories: ci
+
---
With a server with Nix installed (no need for NixOS), you can leverage its build
diff --git a/_tils/2020-11-12-git-bisect-automation.md b/_tils/2020-11-12-git-bisect-automation.md
index ff3ed34..9c34b2a 100644
--- a/_tils/2020-11-12-git-bisect-automation.md
+++ b/_tils/2020-11-12-git-bisect-automation.md
@@ -10,6 +10,8 @@ lang: en
ref: git-bisect-automation
+eu_categories: git
+
---
It is good to have an standardized way to run builds and tests on the repository
diff --git a/_tils/2020-11-12-useful-bash-variables.md b/_tils/2020-11-12-useful-bash-variables.md
index d0849ce..33a072e 100644
--- a/_tils/2020-11-12-useful-bash-variables.md
+++ b/_tils/2020-11-12-useful-bash-variables.md
@@ -10,6 +10,8 @@ lang: en
ref: useful-bash-variables
+eu_categories: shell
+
---
[GNU Bash][gnu-bash] has a few two letter variables that may be useful when
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 8ffeab8..9eeaa5f 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
@@ -10,6 +10,8 @@ lang: en
ref: storing-ci-data-on-git-notes
+eu_categories: git,ci
+
---
Extending the bare bones CI server I've [talked about before][previous-article],
diff --git a/_tils/2020-12-15-awk-snippet-shellcheck-all-scripts-in-a-repository.md b/_tils/2020-12-15-awk-snippet-shellcheck-all-scripts-in-a-repository.md
index 2b434b4..cc2e02c 100644
--- a/_tils/2020-12-15-awk-snippet-shellcheck-all-scripts-in-a-repository.md
+++ b/_tils/2020-12-15-awk-snippet-shellcheck-all-scripts-in-a-repository.md
@@ -10,6 +10,8 @@ lang: en
ref: awk-snippet-shellcheck-all-scripts-in-a-repository
+eu_categories: shell
+
---
Inspired by Fred Herbert's "[Awk in 20 Minutes][awk-20min]", here's a problem I