Git Cheat Sheet

Git new machine configuation Stating correct identiry: git config --global user.name "Alexander Holbreich" git config --global user.email "alexander@xxxxx.org" git config --global color.ui auto #adds some collorts to standard conosle output Some handy aliases: # ci for commit git config --global alias.ci commit # amend for commit --amend git config --global alias.amend ci --amend Commit history git log --oneline #Show diffs git log -p #Show commit stats (e.g. foo.txt | 1 + 1 file changed, 1 insertion(+) git log --stats #List commit's by author git log --author <name> #Limit by time git log --after 2023-10-20 git log --after 2....

January 20, 2023 · 1 min · Alexander Holbreich

Upgrading Fedora Linux

Fedora Feature Log and Upgrade commands

October 8, 2022 · 5 min · Alexander Holbreich

JDK 21: Virtual Threads

An introduction to JDK 21 virtual threads and practicals examples

October 4, 2022 · 5 min · Alexander Holbreich

(Typical) journey towards full GitOps

Description of a typical journey towards the GitOps with Flux

June 8, 2021 · 9 min · Alexander Holbreich

Blog with Hugo

How I switched from Ghost Blog to Hugo and how you can do it too.

April 2, 2021 · 2 min · Alexander Holbreich

How to setup EKS on AWS with terraform

How to set up AWS EKS Kubernetes cluster with Terraform, by DevOps expert

November 2, 2020 · 8 min · Alexander Holbreich

Kube-state-metrics 1.8.0 - all metrics docu

Listing of Kube-state-metrics with comments. For kube-state-metrics 1.8.0

May 5, 2020 · 12 min · Alexander Holbreich

Upgrading Fedora Linux

Fedora Linux upgrading guide: Step by Step

May 4, 2020 · 2 min · Alexander Holbreich

Installing Filebeat for Kubernetes Logs

Setup of Filebeat on a Kubernetes cluster for logs scraping

April 26, 2020 · 3 min · Alexander Holbreich

Installing Logstash on Kubernetes

Setuping Logstash on a Kubernetes cluster - The L in the ELK stack

April 25, 2020 · 3 min · Alexander Holbreich