summaryrefslogtreecommitdiff
path: root/src/content/tils/2020
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/tils/2020')
-rw-r--r--src/content/tils/2020/08/12/filename-timestamp.adoc1
-rw-r--r--src/content/tils/2020/08/14/browse-git.adoc1
-rw-r--r--src/content/tils/2020/08/16/git-search.adoc1
-rw-r--r--src/content/tils/2020/08/28/grep-online.adoc1
-rw-r--r--src/content/tils/2020/09/05/oldschool-pr.adoc1
-rw-r--r--src/content/tils/2020/10/11/search-git-history.adoc1
-rw-r--r--src/content/tils/2020/11/08/find-broken-symlink.adoc1
-rw-r--r--src/content/tils/2020/11/12/diy-nix-bash-ci.adoc1
-rw-r--r--src/content/tils/2020/11/12/git-bisect-automation.adoc1
-rw-r--r--src/content/tils/2020/11/12/useful-bashvars.adoc1
-rw-r--r--src/content/tils/2020/11/30/git-notes-ci.adoc1
-rw-r--r--src/content/tils/2020/12/15/shellcheck-repo.adoc1
12 files changed, 12 insertions, 0 deletions
diff --git a/src/content/tils/2020/08/12/filename-timestamp.adoc b/src/content/tils/2020/08/12/filename-timestamp.adoc
index ed7dee8..1cbe404 100644
--- a/src/content/tils/2020/08/12/filename-timestamp.adoc
+++ b/src/content/tils/2020/08/12/filename-timestamp.adoc
@@ -1,4 +1,5 @@
= Simple filename timestamp
+:categories: shell
When writing Jekyll posts or creating log files with dates on them, I usually
struggle with finding a direct way of accomplishing that. There's a simple
diff --git a/src/content/tils/2020/08/14/browse-git.adoc b/src/content/tils/2020/08/14/browse-git.adoc
index 556288c..3d7660e 100644
--- a/src/content/tils/2020/08/14/browse-git.adoc
+++ b/src/content/tils/2020/08/14/browse-git.adoc
@@ -1,4 +1,5 @@
= Browse a git repository at a specific commit
+:categories: git
I commonly use tools like `git log` together with `git show` when inspecting
past changes in a repository:
diff --git a/src/content/tils/2020/08/16/git-search.adoc b/src/content/tils/2020/08/16/git-search.adoc
index 5ad0eae..26e617d 100644
--- a/src/content/tils/2020/08/16/git-search.adoc
+++ b/src/content/tils/2020/08/16/git-search.adoc
@@ -1,4 +1,5 @@
= Search in git
+:categories: git
Here's a useful trio to know about to help you search things in git:
diff --git a/src/content/tils/2020/08/28/grep-online.adoc b/src/content/tils/2020/08/28/grep-online.adoc
index cade066..7d22cf8 100644
--- a/src/content/tils/2020/08/28/grep-online.adoc
+++ b/src/content/tils/2020/08/28/grep-online.adoc
@@ -1,4 +1,5 @@
= Grep online repositories
+:categories: git
:cgit: https://git.zx2c4.com/cgit/
diff --git a/src/content/tils/2020/09/05/oldschool-pr.adoc b/src/content/tils/2020/09/05/oldschool-pr.adoc
index 020861e..a2c758c 100644
--- a/src/content/tils/2020/09/05/oldschool-pr.adoc
+++ b/src/content/tils/2020/09/05/oldschool-pr.adoc
@@ -1,4 +1,5 @@
= Pull requests with Git, the old school way
+:categories: git
:empty:
:cgit: https://git.zx2c4.com/cgit/
diff --git a/src/content/tils/2020/10/11/search-git-history.adoc b/src/content/tils/2020/10/11/search-git-history.adoc
index b6af8f9..06df9dc 100644
--- a/src/content/tils/2020/10/11/search-git-history.adoc
+++ b/src/content/tils/2020/10/11/search-git-history.adoc
@@ -1,4 +1,5 @@
= Search changes to a filename pattern in Git history
+:categories: git
:yet: link:../../08/14/browse-git.html
:another: link:../../08/16/git-search.html
diff --git a/src/content/tils/2020/11/08/find-broken-symlink.adoc b/src/content/tils/2020/11/08/find-broken-symlink.adoc
index d8f6b20..9b44036 100644
--- a/src/content/tils/2020/11/08/find-broken-symlink.adoc
+++ b/src/content/tils/2020/11/08/find-broken-symlink.adoc
@@ -1,4 +1,5 @@
= Find broken symlinks with "find"
+:categories: shell
:annex: https://git-annex.branchable.com/
:annex-wanted: https://git-annex.branchable.com/git-annex-wanted/
diff --git a/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc b/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc
index cee2098..aa96466 100644
--- a/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc
+++ b/src/content/tils/2020/11/12/diy-nix-bash-ci.adoc
@@ -3,6 +3,7 @@ export sort=2
////
= DIY bare bones CI server with Bash and Nix
+:categories: ci
:post-receive: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks
:example-project: https://euandreh.xyz/remembering/ci.html
diff --git a/src/content/tils/2020/11/12/git-bisect-automation.adoc b/src/content/tils/2020/11/12/git-bisect-automation.adoc
index d068fc1..936d042 100644
--- a/src/content/tils/2020/11/12/git-bisect-automation.adoc
+++ b/src/content/tils/2020/11/12/git-bisect-automation.adoc
@@ -3,6 +3,7 @@ export sort=1
////
= Git bisect automation
+:categories: git
It is good to have an standardized way to run builds and tests on the repository
of a project, so that you can find when a bug was introduced by using
diff --git a/src/content/tils/2020/11/12/useful-bashvars.adoc b/src/content/tils/2020/11/12/useful-bashvars.adoc
index 5061b64..84b93c3 100644
--- a/src/content/tils/2020/11/12/useful-bashvars.adoc
+++ b/src/content/tils/2020/11/12/useful-bashvars.adoc
@@ -1,4 +1,5 @@
= Useful Bash variables
+:categories: shell
:bash: https://www.gnu.org/software/bash/
:bash-bang-bang: https://www.gnu.org/software/bash/manual/bash.html#Event-Designators
diff --git a/src/content/tils/2020/11/30/git-notes-ci.adoc b/src/content/tils/2020/11/30/git-notes-ci.adoc
index bfce42a..19f38d3 100644
--- a/src/content/tils/2020/11/30/git-notes-ci.adoc
+++ b/src/content/tils/2020/11/30/git-notes-ci.adoc
@@ -1,4 +1,5 @@
= Storing CI data on Git notes
+:categories: git, ci
:git-notes: https://git-scm.com/docs/git-notes
:nix-bash-ci: link:../12/diy-nix-bash-ci.html
diff --git a/src/content/tils/2020/12/15/shellcheck-repo.adoc b/src/content/tils/2020/12/15/shellcheck-repo.adoc
index e86cbff..c99b4a9 100644
--- a/src/content/tils/2020/12/15/shellcheck-repo.adoc
+++ b/src/content/tils/2020/12/15/shellcheck-repo.adoc
@@ -1,4 +1,5 @@
= Awk snippet: ShellCheck all scripts in a repository
+:categories: shell
:awk-20-min: https://ferd.ca/awk-in-20-minutes.html
:shellcheck: https://www.shellcheck.net/